The MsAdvancedFilterConditionOperator enumeration is used to determine a comparison operator for filtering condition.
It is used by the following property:
| Value | Brief description |
| 0 | Equal. Attribute's value must be equal to the specified value. |
| 1 | NotEqual. Attribute's value must not be equal to the specified value. |
| 2 | Greater. Attribute's value must be greater than the specified value. |
| 3 | GreaterOrEqual. Attribute's value must be greater or equal to the specified value. |
| 4 | Less. Attribute's value must be less than the specified value. |
| 5 | LessOrEqual. Attribute's value must be less or equal to the specified value. |
| 6 | Between. Attribute's value must be in the specified range of values. |
| 7 | In. Attribute's value must be in the specified range of values. |
See also: