ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

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
MenuAddSeparator (Function)
In french: MenuAjouteSéparateur
AjaxNot available
Adds a new separator in a menu. To insert a separator at a specific location, use MenuInsertSeparator.
Example
// Add a new menu
MenuAddMenu(MENU_MyMenu, "OPT_Schedule", "Schedule")
// Add an option into the new menu
MenuAddOption("OPT_Schedule", "OPT_Create", "Create", Create_Schedule)
// Associate an image with the menu option
{"OPT_Create", indControl}..Image = "schedule.png"
// Add a separator
MenuAddSeparator("OPT_Schedule")
// Add a new option
MenuAddOption("OPT_Schedule", "OPT_View", "View", View_schedule)
Syntax
<Result> = MenuAddSeparator(<Source menu>)
<Result>: Integer
Position of the separator in the menu. A fatal error occurs if the separator was not added.
<Source menu>: Menu name
Name of the menu where the separator must be added. The separator will be added at the end of this menu.
Component: wd280obj.dll
Minimum version required
  • Version 14
This page is also available for…
Comments
Click [Add] to post a comment