windowsforms-devexpress-dot-xtragrid-dot-columns-9747b0a4.md
Contains values specifying filtering types.
Namespace : DevExpress.XtraGrid.Columns
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
public enum ColumnFilterType
Public Enum ColumnFilterType
| Name | Description |
|---|---|
None |
Indicates that filtering is disabled.
|
| Custom |
Indicates that filtering is applied based on a custom filter string. The string should be constructed in compliance with SQL requirements.
|
| Value |
Indicates that a column should be filtered by a specific value.
|
| AutoFilter |
Indicates that a column’s values are filtered via the automatic filtering row.
|
The following properties accept/return ColumnFilterType values:
The filter condition applied to a column is specified by the column’s GridColumn.FilterInfo property. This property returns the ColumnFilterInfo object whose ColumnFilterInfo.Type property returns values listed by the ColumnFilterType enumeration. Note that the ColumnFilterInfo.Type property value is initialized by the ColumnFilterInfo object’s constructor.
See Also