Enum KeywordType
Enumeration of conditional G-code keywords
[JsonConverter(typeof(JsonNumberEnumConverter<KeywordType>))]
public enum KeywordType : byte
Fields
Abort = 6Abort instruction
Break = 5Break instruction
Continue = 10Continue instruction
Echo = 9Echo operation
Else = 3Else condition
ElseIf = 2Else-if condition
Global = 11Global operation
If = 1If condition
None = 0No conditional code
Set = 8Set operation
Skip = 12Skip the rest of the current line (no-op)
Var = 7Var operation
While = 4While condition