FilterOperator Enumeration
Filter settings for Grids and other collection constructs, which is applied to
FilterItemNamespace: MobileTrack.Common.EnumsAssembly: MobileTrack.Common (in MobileTrack.Common.dll) Version: 0.7+45c8d9adb5970d727cceec44a5ed61aea0016e50
public enum FilterOperator
| None | 0 |
No filter has been applied yet.
|
| Equals | 1 |
Satisfied if the current value equals the specified value.
|
| LessThan | 2 |
Satisfied if the current value is less than the specified value.
|
| LessThanOrEquals | 3 |
Satisfied if the current value is less than or equal to the specified value.
|
| GreaterThan | 4 |
Satisfied if the current value is greater than the specified value.
|
| GreaterThanOrEquals | 5 |
Satisfied if the current value is greater than or equal to the specified value.
|
| Contains | 6 |
Satisfied if the current value contains the specified value.
|
| StartsWith | 7 |
Satisfied if the current value starts with the specified value.
|
| EndsWith | 8 |
Satisfied if the current value ends with the specified value.
|
| Range | 9 |
A "From" and "To" filter, which is satisfied if the current value is between the two specified values
or equal to either of them.
|