|
|
|
|
|
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.
WM_LBUTTONDOWN is int = 513
IDEve is int
IDEve = Event("ClicSouris", "SAI_SAISIE1", WM_LBUTTONDOWN)
...
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).
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|