[]
Represents formula operators.
public enum OperatorKind : byte
Public Enum OperatorKind As Byte
| Name | Description |
|---|---|
| Addition | Represents the + operator. |
| Concatenate | Represents the & operator. |
| Division | Represents the / operator. |
| Equality | Represents the = operator. |
| Exponent | Represents the ^ operator. |
| GreaterThan | Represents the > operator. |
| GreaterThanOrEqual | Represents the >= operator. |
| Inequality | Represents the <> operator. |
| Intersection | Represents the (space) operator. |
| LessThan | Represents the < operator. |
| LessThanOrEqual | Represents the <= operator. |
| Multiply | Represents the * operator. |
| Percentage | Represents the % operator. |
| Range | Represents the : operator. |
| Single | Represents the @ operator. |
| Spill | Represents the # operator. |
| Subtraction | Represents the - operator. |
| Union | Represents the |