Enum ExpressionType
- Namespace
- CMS.MacroEngine
- Assembly
- CMS.MacroEngine.dll
Expression type.
public enum ExpressionType
- Extension Methods
Fields
Block = 8Block of expressions
Command = 9Special command (break, continue, ...)
DataMember = 2Data member (simple identifier), typically in format ABC.
Empty = 4Empty command.
MethodCall = 1Standalone method call, typically in format Something(...).
ParameterValue = 7Parameter value (backward compatibility).
Property = 5Property of result, typically in format ABC.Something.
SubExpression = 6Subexpression defined by parenthesis, typically in format (Something + SomethingElse) > XXX
Unparsed = 0Unparsed.
Value = 3Specific value (any type), typically in format 0.5 or "something".