Back to Devexpress

ColumnFilterType Enum

windowsforms-devexpress-dot-xtragrid-dot-columns-9747b0a4.md

latest2.3 KB
Original Source

ColumnFilterType Enum

Contains values specifying filtering types.

Namespace : DevExpress.XtraGrid.Columns

Assembly : DevExpress.XtraGrid.v25.2.dll

NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation

Declaration

csharp
public enum ColumnFilterType
vb
Public Enum ColumnFilterType

Members

NameDescription
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:

Remarks

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

ColumnFilterInfo

Type

DevExpress.XtraGrid.Columns Namespace