AlarmState
[ Enumeration ]
export enum AlarmState {
Raised = 0,
Confirmed = 1,
Cleared = 2,
ClearedAndConfirmed = 3
}
Indicates the state of the alarm.
The names of the enumeration exist at runtime. For example, you can use TcHmi.Server.Events.AlarmState.Cleared
directly in a comparison.
Values
Name | Value | Description |
---|---|---|
Raised | 0 | The alarm was triggered. |
Confirmed | 1 | The alarm was acknowledged. |
Cleared | 2 | The alarm was cleared. |
ClearedAndConfirmed | 3 | The alarm was cleared and confirmed. |
Available from version 1.12 |