AckSignature.MaxPriority property
- Last UpdatedJul 19, 2024
- 1 minute read
The AckSignature.MaxPriority property is a read-write integer property, which gets or sets the maximum priority value for alarms that require a signature to be acknowledged. The value must range between 1 and 999, and must be greater than or equal to the AckSignature.MinPriority value. The default value of AckSignature.MaxPriority is 999.
Syntax
To Set:
<EAC instance name>.<Property Name> = <integer value>;
Example
AlarmClient1.AckSignature.MaxPriority = 500;
Syntax:
To Get:
integer <variable name> = <EAC instance name>.<Property Name>;
Example
dim iMax as integer;
iMax = AlarmClient1.AckSignature.MaxPriority;
Remarks
For more information, see Provide a signature to acknowledge alarms.