ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Windows functions / Windows Event functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Indicates whether a specific procedure is run when a Windows event is sent to a control or window.
Example
// Request to receive the click if not done already
WM_LBUTTONDOWN is int = 513
IF NOT EventExist(EDT_MyControl, WM_LBUTTONDOWN) THEN
  Event(MouseClick, "EDT_MyControl", WM_LBUTTONDOWN)
END
Syntax
<Result> = EventExist(<Element> , <Windows event>)
<Result>: Boolean
  • True if:
    • Event has been called on the control,
    • An optional event has been added for the control in the code editor.
  • False otherwise.
<Element>: Control name or window name
Name of the control or window with the desired event.
<Windows event>: Integer
Number or name of the Windows event. See the list of Windows events.
Remark: The Windows constants can be directly included in your WLanguage code via the EXTERN keyword.
Business / UI classification: UI Code
Component: wd290obj.dll
Minimum version required
  • Version 25
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help