GefContextMenu.Displayable (property)

Gets and sets if the menu will be displayed
Syntax: Boolean = object.Displayable
object.Displayable = Boolean
Description: The Displayable property gets and sets if the menu will be displayed after the "Before Context Menu" event action has finished.

Example:

Sub OnPreContextMenu(oContextMenu As GefContextMenu)
    
  oContextMenu.Displayable = False
    
End Sub