ColumnBase.AutoFilterCondition Property
Gets or sets the type of the comparison operator used to create filter conditions for the current column using the Auto Filter Row. This is a dependency property.
Namespace: DevExpress.UI.Xaml.Grid
Assembly: DevExpress.UI.Xaml.Grid.v21.2.dll
NuGet Package: DevExpress.Uwp.Controls
Declaration
[XtraSerializableProperty]
[Browsable(false)]
public AutoFilterCondition AutoFilterCondition { get; set; }
Property Value
Type | Description |
---|---|
AutoFilterCondition | An AutoFilterCondition enumeration value that specifies the type of the comparison operator. |
Available values:
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. |