Represents operators that can be used in filter conditions.
Namespace:
C1.Silverlight.FlexGridAssembly: C1.Silverlight.FlexGridFilter.4 (in C1.Silverlight.FlexGridFilter.4.dll)
Syntax
C# |
---|
public enum ConditionOperator |
Visual Basic |
---|
Public Enumeration ConditionOperator |
Members
Member name | Value | Description | |
---|---|---|---|
None | 0 | Disables the operator. | |
Equals | 1 | Return true if the value equals the operator parameter. | |
DoesNotEqual | 2 | Return true if the value does not equal the operator parameter. | |
IsGreaterThan | 3 | Return true if the value is greater than the operator parameter. | |
IsLessThan | 4 | Return true if the value is less than the operator parameter. | |
IsGreaterThanOrEqualTo | 5 | Return true if the value is greater than or equal to the operator parameter. | |
IsLessThanOrEqualTo | 6 | Return true if the value is less than or equal to the operator parameter. | |
Contains | 7 | Return true if the string representation of the value contains the operator parameter. | |
DoesNotContain | 8 | Return true if the string representation of the value does not contain the operator parameter. | |
BeginsWith | 9 | Return true if the string representation of the value begins with the operator parameter. | |
EndsWith | 10 | Return true if the string representation of the value ends with the operator parameter. |