Predefined filter expression enumeration. Used by FilterExpression class.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
public enum GridKnownFunction
Fields
Same as: value1 <= FieldName <= value2.
Note that value1 and value2 should be separated by [space] when entered as
filter.
Between = 11
Same as: FieldName LIKE '%value%'
Contains = 1
Same as: FieldName NOT LIKE '%value%'
DoesNotContain = 2
Same as: FieldName LIKE '%value'
EndsWith = 4
Same as: FieldName = value
EqualTo = 5
Same as: FieldName > value
GreaterThan = 7
Same as: FieldName >= value
GreaterThanOrEqualTo = 9
Same as: FieldName = ''
IsEmpty = 13
Only null values
IsNull = 15
Same as: FieldName < value
LessThan = 8
Same as: FieldName <= value
LessThanOrEqualTo = 10
No filter would be applied, filter controls would be cleared
NoFilter = 0
Same as: FieldName <= value1 && FieldName >= value2.
Note that value1 and value2 should be separated by [space] when entered as
filter.
NotBetween = 12
Same as: FieldName != value
NotEqualTo = 6
Same as: FieldName != ''
NotIsEmpty = 14
Only those records that does not contain null values within the corresponding column
NotIsNull = 16
Same as: FieldName LIKE 'value%'
StartsWith = 3