[]
Specifies an operator to use to compare the values returned by the FilterExpression with those in the FilterValues object.
public enum FilterOperator
| Name | Description |
|---|---|
| Between | Displays the record if the FilterExpression result falls between the two FilterValues. |
| BottomN | Displays the record if the FilterExpression result is in the bottom N of all records processed. |
| BottomPercent | Displays the record if the FilterExpression result is in the bottom N% of all records processed. |
| Equal | Displays the record if the two values are equal. |
| GreaterThan | Displays the record if the FilterExpression result is greater than the FilterValues. |
| GreaterThanOrEqual | Displays the record if the FilterExpression result is greater than or equal to the FilterValues. |
| In | Displays the record if the FilterExpression result is within the list of FilterValues. |
| LessThan | Displays the record if the FilterExpression result is less than the FilterValue. |
| LessThanOrEqual | Displays the record if the FilterExpression result is less than or equal to the FilterValue. |
| Like | Displays the record if the FilterExpression results satisfy the pattern set in the FilterValues. |
| NotEqual | Displays the record if the two values are not equal. |
| TopN | Displays the record if the FilterExpression result is in the top N of all records processed. |
| TopPercent | Displays the record if the FilterExpression result is in the top N% of all records processed. |