[]
Represents operators used in filter conditions.
public enum ConditionOperator
Name | Description |
---|---|
BeginsWith | Return true if the string representation of the value begins with the operator parameter. |
Contains | Return true if the string representation of the value contains the operator parameter. |
DoesNotContain | Return true if the string representation of the value does not contain the operator parameter. |
EndsWith | Return true if the string representation of the value ends with the operator parameter. |
Equals | Return true if the value equals the operator parameter. |
GreaterThan | Return true if the value is greater than the operator parameter. |
GreaterThanOrEqualTo | Return true if the value is greater than or equal to the operator parameter. |
IsBlank | Return true if the cell value is is null, or the cell value equals to DBNull.Value, or the string representation of the value is string.Empty. |
IsDistinct | Returns true for the first the cell value entry in the filtered column according with the grid sorting order. |
IsDuplicate | Returns true if the cell value occurs more than once in the filtered column. |
IsUnique | Returns true if the cell value occurs once in the filtered column. |
LessThan | Return true if the value is less than the operator parameter. |
LessThanOrEqualTo | Return true if the value is less than or equal to the operator parameter. |
None | Disables the operator. |
NotEquals | Return true if the value does not equal the operator parameter. |