ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Standard functions / Windows functions / Windows Event functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
EndEvent (Function)
In french: FinEvénement
Cancels the interception of a Windows event on a WINDEV control or window (implemented by Event). The procedure associated with a Windows event will not be called anymore.
Remark: Event interception is automatically stopped when the associated window is closed.
Example
// Capture du clic souris sur un champ de saisie
WM_LBUTTONDOWN is int = 513
IDEve is int
IDEve = Event("ClicSouris", "SAI_SAISIE1", WM_LBUTTONDOWN)
...
// Arrêt de l'interception de WM_LBUTTONDOWN sur le champ "SAI_SAISIE1"
EndEvent(IDEve)
Syntax
<Result> = EndEvent(<Event number>)
<Result>: Boolean
  • True if the interception of the event was canceled,
  • False in case of a problem (incorrect event number for example).
<Event number>: entier
Number of the event to cancel (returned by Event).
Component: wd300obj.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/21/2024

Send a report | Local help