Disables an item on a menu. The menu item is dimmed (its color is changed to the user’s disabled text color, usually gray), and the user cannot select it.
Menu objects
menuname.Disable ( )
Argument |
Description |
---|---|
menuname |
The name of the menu selection you want to deactivate (disable) |
Integer. Returns 1 if it succeeds and -1 if an error occurs. If menuname is null, Disable returns null.
Equivalent syntax Setting the menu’s Enabled property is the same as calling Disable.
menuname.Enabled = false
This statement:
m_appl.m_edit.Enabled = FALSE
is equivalent to:
m_appl.m_edit.Disable()
This statement disables the m_edit menu item on the menu m_appl:
m_appl.m_edit.Disable()