Table of Contents

Enum ExpressionType

Namespace
CMS.MacroEngine
Assembly
CMS.MacroEngine.dll

Expression type.

public enum ExpressionType
Extension Methods

Fields

Block = 8

Block of expressions

Command = 9

Special command (break, continue, ...)

DataMember = 2

Data member (simple identifier), typically in format ABC.

Empty = 4

Empty command.

MethodCall = 1

Standalone method call, typically in format Something(...).

ParameterValue = 7

Parameter value (backward compatibility).

Property = 5

Property of result, typically in format ABC.Something.

SubExpression = 6

Subexpression defined by parenthesis, typically in format (Something + SomethingElse) > XXX

Unparsed = 0

Unparsed.

Value = 3

Specific value (any type), typically in format 0.5 or "something".