4D v16.3

GET MENU ITEMS

Home

 
4D v16.3
GET MENU ITEMS

GET MENU ITEMS 


 

GET MENU ITEMS ( menu ; menuTitlesArray ; menuRefsArray ) 
Parameter Type   Description
menu  Longint, MenuRef in Menu reference or Menu number
menuTitlesArray  String array in Array of menu titles
menuRefsArray  String array in Array of menu references

The GET MENU ITEMS command returns, in the menuTitlesArray and menuRefsArray arrays, the titles and IDs of all the items of the menu or menu bar designated by the menu parameter.

In the menu parameter, you can pass a menu reference (MenuRef), a menu bar number or a menu bar reference obtained using the Get menu bar reference command.

If no menu reference is associated with an item, an empty string is returned in the corresponding array element.

Example  

You want to find out the contents of the menu bar of the current process:

 ARRAY TEXT(menuTitlesArray;0)
 ARRAY TEXT(menuRefsArray;0)
 MenuBarRef:=Get menu bar reference(Frontmost process)
 GET MENU ITEMS(MenuBarRef;menuTitlesArray;menuRefsArray)

 
PROPERTIES 

Product: 4D
Theme: Menus
Number: 977

 
HISTORY 

Created: 4D v11 SQL

 
ARTICLE USAGE

4D Language Reference ( 4D v16)
4D Language Reference ( 4D v16.1)
4D Language Reference ( 4D v16.2)
4D Language Reference ( 4D v16.3)