Back to Devexpress

AutoFilterCondition Enum

wpf-devexpress-dot-xpf-dot-grid-48fb7624.md

latest2.3 KB
Original Source

AutoFilterCondition Enum

Lists values that specify the type of the comparison operator used to create filter conditions within the Automatic Filter Row.

Namespace : DevExpress.Xpf.Grid

Assembly : DevExpress.Xpf.Grid.v25.2.Core.dll

NuGet Package : DevExpress.Wpf.Grid.Core

Declaration

csharp
public enum AutoFilterCondition
vb
Public Enum AutoFilterCondition

Members

NameDescription
Like

The Like comparison operator is used to create filter conditions. This operator selects records whose values in the corresponding column start with the entered string.

| | Equals |

The Equals comparison operator is used to create filter conditions. This operator selects records whose values in the corresponding column match the entered value.

| | Contains |

The Contains operator is used to create filter conditions. This operator selects records whose values in the corresponding column contain the entered string.

| | Default |

For string values, the Like comparison operator is used to create filter conditions. This operator selects records whose values in the corresponding column start with the entered string.

For other values (e.g. Boolean, numeric), the Equals comparison operator is used.

|

The following properties accept/return AutoFilterCondition values:

Remarks

The automatic filter row allows end-users to filter data on the fly, by typing text within the row’s cell. This automatically creates a filter condition against the corresponding column. The comparison operator used in this condition is determined by the column’s ColumnBase.AutoFilterCondition property.

See Also

DevExpress.Xpf.Grid Namespace