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