Skip to main content

AutoFilterCondition Enum

Lists values that specify the type of the comparison operator used to create filter conditions.

Namespace: DevExpress.Xpf.Grid

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

#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.

#Passed To

You can pass AutoFilterCondition values to the ColumnBase.AutoFilterCondition property.

#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