AutoFilterCondition Enum
Enumerates comparison operators used in the Auto-Filter Row.
Namespace: DevExpress.XtraGrid.Columns
Assembly: DevExpress.XtraGrid.v25.1.dll
NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation
Declaration
Members
| Name | Description |
|---|---|
Default
|
The default condition depends on the column editor and column data type. For columns that use a text editor and contain strings (or display strings instead of actual non-string values and are filtered by these strings (see FilterMode)), this option enables the Contains condition. For all other columns, it enables the Equals condition. |
Like
|
|
Equals
|
|
Contains
|
|
BeginsWith
|
|
EndsWith
|
|
DoesNotContain
|
|
DoesNotEqual
|
|
Greater
|
|
GreaterOrEqual
|
|
Less
|
|
LessOrEqual
|
|
NotLike
|
|
Related API Members
The following properties accept/return AutoFilterCondition values:
Selects records that match the entered pattern. Use the
Selects records that are equal to the entered value.
Selects records that contain the entered string.
Selects records that start with the entered string. Equals to the
Selects records that end with the entered string. Equivalent to the
Selects records that do not contain the entered string. Equivalent to the
Selects records that do not equal the entered value. Opposite to the
Selects records that are greater than the entered value. String values are compared according to their alphabetical order.
Selects records that are greater than the entered value or equal to it. String values are compared according to their alphabetical order.
Selects records that are less than the entered value. String values are compared according to their alphabetical order.
Selects records that are less than the entered value or equal to it. String values are compared according to their alphabetical order.
Selects records that do not match the entered pattern. Opposite to the