noinstrumentationmenu(
)

The noinstrumentationmenu( function supresses the Instrumentation menu.


Parameters

No parameters.


Description

This function suppresses the Instrumentation 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, Build, Wizards, Window and Help, but no Instrumentation menu.

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

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

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

Note: The Instrumentation menu only appears if the Enable Instrumentation Panel option is checked in the Advanced panel of the Preferences window. See Debug Instrumentation to learn more.


See Also


History

VersionStatusNotes
10.2NewNew in this version.