ConfirmationState
[ Enumeration ]
export enum ConfirmationState {
NotSupported = 0,
NotRequired = 1,
WaitForConfirmation = 2,
Confirmed = 3,
Reset = 4
}
The names of the enumeration exist at runtime.
Values
Name | Value | Description |
---|---|---|
NotSupported | 0 | Acknowledgement is not supported |
NotRequired | 1 | Acknowledgement not necessary |
WaitForConfirmation | 2 | Waiting for acknowledgement |
Confirmed | 3 | Acknowledged |
Reset | 4 | Reset |
Available from version 1.10 |