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