Skip to main content

AutoFilterCondition Enum

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

Namespace: DevExpress.WinUI.Grid

Assembly: DevExpress.WinUI.Grid.v23.2.dll

NuGet Package: DevExpress.WinUI

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