ContextMenu.UnshelveAll property
- Last UpdatedJul 19, 2024
- 1 minute read
ContextMenu.UnshelveAll is read-write Boolean property that gets or sets the appearance of the Unshelve All option on the Alarm Control’s shortcut menu.
Syntax
To Set:
AlarmClient.ContextMenu.UnshelveAll = boolean_value;
Example
AlarmClient1.ContextMenu.UnshelveAll = true;
Syntax
To Get:
boolean_variable_name = AlarmClient.ContextMenu.UnshelveAll;
Example
dim ShlvAll as boolean;
ShlvAll = AlarmClient1.ContextMenu.UnshelveAll;
Remarks
For more information, see Configure the runtime shortcut menu.