CommandQueueActionType Enumeration |
Enum for specifying the command queue action type in the CommandQueueActionPerformedEventArgs objects.
Namespace: SD.Tools.AlgorithmiaAssembly: SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.2.0.0 (1.2.14.1118)
Syntax public enum CommandQueueActionType
Public Enumeration CommandQueueActionType
Members
| Member name | Value | Description |
---|
| CommandExecuted | 0 |
A command was executed
|
| CommandEnqueued | 1 |
A command was enqueued
|
| UndoPerformed | 2 |
A command was undo-ed
|
| RedoPerformed | 3 |
A command was redo-ed
|
| CommandQueuePushed | 4 |
A command's command queue was pushed onto the command stack. (so any spawned commands are enqueued inside the command itself)
|
| CommandQueuePopped | 5 |
A command's command queue was popped from the command stack.
|
| CommandDequeued | 6 |
A command was dequeued and the current command pointer was pushed back.
|
See Also