ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
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
<Menu>.AddSeparator (Function)
In french: <Menu>.AjouteSéparateur
AjaxNot available
Adds a new separator in a menu (drop-down or context menu). To insert a separator at a specific location, use <Menu>.InsertSeparator.
Example
// Ajoute un nouveau menu
MENU_MonMenu.AjouteMenu("OPT_Planning", "Planning")
// Ajoute une option dans le nouveau menu
OPT_Planning.AjouteOption("OPT_Créer", "Créer", Créer_Planning)
// Associe une image à l'option de menu
{"OPT_Créer", indControl}..Image = "planning.png"
// Ajoute un séparateur
OPT_Planning.AjouteSéparateur()
// Ajoute une nouvelle option
OPT_Planning.AjouteOption("OPT_Voir", "Voir", Voir_planning)
Syntax
<Result> = <Source menu>.AddSeparator()
<Result>: Integer
Position of the separator in the drop-down or context menu. A fatal error occurs if the separator is not added.
<Source menu>: Menu name
Name of the menu where the separator must be added. The separator will be added after the last option in this menu.
Remark: This name can correspond to a context menu.
PHP Context menus are not available.
Component: wd280obj.dll
Minimum version required
  • Version 23
This page is also available for…
Comments
Click [Add] to post a comment