ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Menu 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
MenuExist (Function)
In french: MenuExiste
Indicates whether a menu option exists in a menu.
Example
// If the option does not exist yet
IF MenuExist(MyMenu, "OpenCustomer" + ID) = False THEN
// Add the option
MenuAddOption(MyMenu, "OpenCustomer" + ID, "Open the form" + ID, OpenForm, ID)
END
Syntax
<Result> = MenuExist(<Menu> , <Menu option>)
<Result>: Boolean
  • True if the menu option exists,
  • False otherwise.
Caution: The search is not recursive: if the menu contains a sub-menu that contains the option, <Result> will be set to False.
<Menu>: Menu name
Name of the menu or name of the context menu where the search will be performed.
<Menu option>: Character string
Name of the menu option to find.
Component: wd290obj.dll
Minimum version required
  • Version 16
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help