Description
The ConditionSyntax syntax elements correspond to various types of comparison or logical operators. The OperatorType property specifies which operator should be used in the current syntax element. To specify the operands, use the Left and Right properties.
Declaration
Applies To
The property is applied to the following object:
Property Value
One of the following constant values, which are defined in each ConditionSyntax object instance:
| Constant | Value | Description |
|---|---|---|
otOr |
0 | Logical OR |
otAnd |
1 | Logical AND |
otNot |
2 | Logical NOT |
otEquality |
3 | Equal to |
otInequality |
4 | Not equal to |
otGreater |
5 | Greater than |
otGreaterOrEqual |
6 | Greater than or equal to |
otLess |
7 | Less than |
otLessOrEqual |
8 | Less than or equal to |
