GefScreen.MenuLockedInvisible (property)

Gets and sets if the menu is locked invisible.
Syntax: Boolean = object.MenuLockedInvisible
object.MenuLockedInvisible = Boolean
Description: The MenuLockedInvisible property gets and sets if the menu is locked invisible. When the menu is locked invisible the menu is made invisible and the Menu check item is removed from the context menu that appears when the context mouse button is pressed. In CimEdit this property does not modify the context menu. When the MenuVisible property is set True this property becomes False.

Example:

Sub GefScreen_MenuLockedInvisible()
    
    Dim oCimScr As GefScreen
    Set oCimScr = CimGetScreen
    oCimScr.MenuLockedInvisible = True
    
End Sub
See Also: MenuVisible