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