FilterOperator Enumeration

Filter settings for Grids and other collection constructs, which is applied to FilterItem

Definition

Namespace: MobileTrack.Common.Enums
Assembly: MobileTrack.Common (in MobileTrack.Common.dll) Version: 0.7+45c8d9adb5970d727cceec44a5ed61aea0016e50
public enum FilterOperator

Members

None0 No filter has been applied yet.
Equals1 Satisfied if the current value equals the specified value.
LessThan2 Satisfied if the current value is less than the specified value.
LessThanOrEquals3 Satisfied if the current value is less than or equal to the specified value.
GreaterThan4 Satisfied if the current value is greater than the specified value.
GreaterThanOrEquals5 Satisfied if the current value is greater than or equal to the specified value.
Contains6 Satisfied if the current value contains the specified value.
StartsWith7 Satisfied if the current value starts with the specified value.
EndsWith8 Satisfied if the current value ends with the specified value.
Range9 A "From" and "To" filter, which is satisfied if the current value is between the two specified values or equal to either of them.

See Also