OpenSubMenu()

Syntax

OpenSubMenu(Text$ [, ImageID])
Description
Creates an empty submenu in the current menu.

Parameters

Text$ The text for the submenu.

In the Text$ argument, the special '&' character can be used to underline a specific letter: "&File" will actually display: File
ImageID (optional) An optional image to display next to the submenu. This parameter only has an effect if the current menu was created using the CreateImageMenu() or CreatePopupImageMenu() command. This value can be obtained using the ImageID() function.

Return value

None.

Example

  If OpenWindow(0, 200, 200, 220, 100, "SubMenu Example")
    If CreateMenu(0, WindowID(0))
      MenuTitle("Project") 
        MenuItem(1, "Open")  
        MenuItem(2, "Close")
        MenuBar()
        OpenSubMenu("Recent files")       ; begin submenu
          MenuItem( 3, "Cookie1.txt")
          MenuItem( 4, "Cookie2.txt")
        CloseSubMenu()                    ; end submenu
    EndIf
  EndIf

See Also

CloseSubMenu(), MenuTitle(), MenuItem(), MenuBar()

Supported OS

All

<- MenuTitle() - Menu Index - SetMenuItemText() ->