Constants - Filter Operators¶
The following constants can be used with AddFilter and SetFilterOperator to set the filter operator value.
| Constant | Description |
|---|---|
C_drNone |
None. Filter is not active. |
C_drEqual |
Equal. The value column to filter on must be identical to the filter value specified |
C_drNotEqual |
Unequal. The value column to filter on cannot be identical to the filter value specified. |
C_drGreaterThan |
Greater than. The value column to filter on must be greater than the filter value specified. |
C_drGreaterThanOrEqual |
Greater than or equal. The value column to filter on must be greater than or equal to the filter value specified. Can be used for the bottom value of a range. |
C_drLessThan |
Less than. The value column to filter on must be less than the filter value specified. |
C_drLessThanOrEqual |
Less than or equal. The value column to filter on must be less than or equal to the filter value specified. Can be used as the top value of a range. |