noactionmenu(
)

The noactionmenu( function suppresses the Action menu.


Parameters

No parameters.


Description

This function suppresses the Action menu. It can only be used in the second parameter of the filemenubar, globalmenubar or windowmenubar functions. This example will build a menu bar with the menus Panorama, File, Edit, Orders, Window and Help, but no Action menu.

filemenubar "basic",
    menu("Orders")+
        menuitem("New Order")+
        menuitem("Print Order")+
        menuitem("Ship Order")+
    noactionmenu()

Note: Here is another way to build the same menus without the noactionmenu( function.

filemenubar "file -action",
    menu("Orders")+
        menuitem("New Order")+
        menuitem("Print Order")+
        menuitem("Ship Order")

See Also


History

VersionStatusNotes
10.0No ChangeCarried over from Panorama 6.0