[]
Represents formula operators.
public enum OperatorKind : byte
Addition = 1
Represents the + operator.
Concatenate = 7
Represents the & operator.
Division = 4
Represents the / operator.
Equality = 13
Represents the = operator.
Exponent = 5
Represents the ^ operator.
GreaterThan = 17
Represents the > operator.
GreaterThanOrEqual = 18
Represents the >= operator.
Inequality = 14
Represents the <> operator.
Intersection = 10
Represents the (space) operator.
LessThan = 15
Represents the < operator.
LessThanOrEqual = 16
Represents the <= operator.
Multiply = 3
Represents the * operator.
Percentage = 6
Represents the % operator.
Range = 8
Represents the : operator.
Single = 12
Represents the @ operator.
Spill = 11
Represents the # operator.
Subtraction = 2
Represents the - operator.
Union = 9
Represents the ,
operator.