Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.2.Core.dll

NuGet Package: DevExpress.Wpf.Grid.Core

#Declaration

public enum AutoFilterCondition

#Members

Name Description
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.

#Related API Members

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