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