CommandState

enum CommandState

Possible states a command can be in.

enumerator Idle

Command is not in queue.

enumerator Queued

Command is in queue waiting to be executed.

enumerator Running

Command queue is currently executing the command.

enumerator Completed

Command execution completed. If desired, the command can be reused by calling ICommandSequence.Reuse().

enumerator Failed

Command execution failed. The run error can be retrieved using ICommandBase.RunException. If desired, the command can be reused by calling ICommandSequence.Reuse().