ColumnBase.AutoFilterCriteria Property
Gets or sets the type of the filter criteria used to filter the grid data. This is a dependency property.
Namespace: DevExpress.WinUI.Grid
Assembly: DevExpress.WinUI.Grid.v23.2.dll
NuGet Package: DevExpress.WinUI
#Declaration
[DP(null, Handler = "OnAutoFilterCriteriaChanged")]
public ClauseType? AutoFilterCriteria { get; set; }
#Property Value
Type |
---|
Nullable<Clause |
Available values:
Name | Description |
---|---|
Equals | Specifies the Equals filter criteria. |
Does |
Specifies the Does Not Equal filter criteria. |
Greater | Specifies the Greater filter criteria. |
Greater |
Specifies the Greater Or Equal filter criteria. |
Less | Specifies the Less filter criteria. |
Less |
Specifies the Less Or Equal filter criteria. |
In |
|
Not |
|
Between | Specifies the Between filter criteria. |
Not |
Specifies the Not Between filter criteria. |
Contains | Specifies the Contains filter criteria. |
Does |
Specifies the Does Not Contain filter criteria. |
Begins |
Specifies the Begins With filter criteria. |
Ends |
Specifies the Ends With filter criteria. |
Like | Specifies the Like filter criteria. |
Not |
Specifies the Not Like filter criteria. |
Is |
Specifies the Is Null filter criteria. |
Is |
Specifies the Is Not Null filter criteria. |
Any |
Specifies the Any Of filter criteria. |
None |
Specifies the None Of filter criteria. |
Is |
Specifies the Is Null Or Empty filter criteria. |
Is |
Specifies the Is Not Null Or Empty filter criteria. |
In |
|
Not |
|
Is |
Specifies the Is Beyond This Year filter criteria. |
Is |
Specifies the Is Later This Year filter criteria. |
Is |
Specifies the Is Later This Month filter criteria. |
Is |
Specifies the Is Next Week filter criteria. |
Is |
Specifies the Is Later This Week filter criteria. |
Is |
Specifies the Is Tomorrow filter criteria. |
Is |
Specifies the Is Today filter criteria. |
Is |
Specifies the Is Yesterday filter criteria. |
Is |
Specifies the Is Earlier This Week filter criteria. |
Is |
Specifies the Is Last Week filter criteria. |
Is |
Specifies the Is Earlier This Month filter criteria. |
Is |
Specifies the Is Earlier This Year filter criteria. |
Is |
Specifies the Is Prior This Year filter criteria. |
Function |
#Remarks
Use the AutoFilterCriteria property to specify the filter criteria for the current column.
The following DevExpress.WinUI.Data.Filtering.Helpers.ClauseType
types are supported:
- BeginsWith
- Contains
- DoesNotContain
- DoesNotEqual
- EndsWith
- Equals
- Greater
- GreaterOrEqual
- Less
- LessOrEqual
- Like
- NotLike
For more information, refer to the following help topic: Automatic Filter Row.