New to Telerik UI for WinFormsStart a free 30-day trial

Predefined filter expression enumeration. Used by FilterExpression class.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

C#
public enum GridKnownFunction

Fields

Same as: value1 <= FieldName <= value2.
Note that value1 and value2 should be separated by [space] when entered as filter.

C#
Between = 11

Same as: FieldName LIKE '%value%'

C#
Contains = 1

Same as: FieldName NOT LIKE '%value%'

C#
DoesNotContain = 2

Same as: FieldName LIKE '%value'

C#
EndsWith = 4

Same as: FieldName = value

C#
EqualTo = 5

Same as: FieldName > value

C#
GreaterThan = 7

Same as: FieldName >= value

C#
GreaterThanOrEqualTo = 9

Same as: FieldName = ''

C#
IsEmpty = 13

Only null values

C#
IsNull = 15

Same as: FieldName < value

C#
LessThan = 8

Same as: FieldName <= value

C#
LessThanOrEqualTo = 10

No filter would be applied, filter controls would be cleared

C#
NoFilter = 0

Same as: FieldName <= value1 && FieldName >= value2.
Note that value1 and value2 should be separated by [space] when entered as filter.

C#
NotBetween = 12

Same as: FieldName != value

C#
NotEqualTo = 6

Same as: FieldName != ''

C#
NotIsEmpty = 14

Only those records that does not contain null values within the corresponding column

C#
NotIsNull = 16

Same as: FieldName LIKE 'value%'

C#
StartsWith = 3