ConfirmationState
[ Enumeration ]
export enum ConfirmationState {
NotSupported = 0,
NotRequired = 1,
WaitForConfirmation = 2,
Confirmed = 3,
Reset = 4
}
Die Namen der Enumeration sind zur Laufzeit vorhanden.
Werte
Name | Wert | Beschreibung |
---|---|---|
NotSupported | 0 | Quittierung wird nicht unterstützt |
NotRequired | 1 | Quittierung nicht notwendig |
WaitForConfirmation | 2 | Warten auf Quittierung |
Confirmed | 3 | Quittiert |
Reset | 4 | Zurückgesetzt |
Verfügbar ab Version 1.10 |