Skip to content

CommandTypes Enum

Command type of a ParseCommandBase.

C#
public enum CommandTypes

Command should be added to the Foreground stack.

C#
Foreground = 0

Command should be added to the Background stack.

C#
Background = 1

Command should be added to the Glyph stack.

C#
Glyph = 2

Command should be added to the Mirror stack.

C#
Mirror = 3

Command should be added to the Effect stack.

C#
Effect = 4

Command should be added to the Decorator stack.

C#
Decorator = 5

Command runs on creation and is not added to anything in ParseCommandStacks.

C#
PureCommand = 6

Command is invalid and should not be processed at all.

C#
Invalid = 7