maui-devexpress-dot-maui-dot-core-832b83c9.md
Enumerates filter conditions used to create a filter criterion based on a value in the Auto Filter Row.
Namespace : DevExpress.Maui.Core
Assembly : DevExpress.Maui.Core.dll
NuGet Package : DevExpress.Maui.Core
public enum DataFilterCondition
| Name | Description |
|---|---|
Default |
The filter condition depends on the type of the column.
|
| StartsWith |
Values in a column should start with the value in the Auto Filter Row.
|
| Contains |
Values in a column should contain the value in the Auto Filter Row.
|
| Equals |
Values in a column should equal the value in the Auto Filter Row.
|
The following properties accept/return DataFilterCondition values:
Use a column’s AutoFilterCondition property to specify the filter condition used to create a filter criterion based on a value in the Auto Filter Row. The default filter depends on the column type.
|
Column Type
|
Default Filter Condition
| | --- | --- | |
|
| |
|
| |
|
| |
|
| |
|
Equals if FilterMode is set to Value; otherwise, Like
| |
|
Equals if FilterMode is set to Value; otherwise, Like
| |
|
| |
|
Equals if FilterMode is set to Value; otherwise, Like
| |
|
| |
|
|
YieldIfNotNull<DataFilterCondition>()
See Also