Skip to main content
A newer version of this page is available. .

ColumnFilterInfo() Constructor

Creates a new ColumnFilterInfo class instance with default settings.

Namespace: DevExpress.XtraGrid.Columns

Assembly: DevExpress.XtraGrid.v18.2.dll

Declaration

public ColumnFilterInfo()

Remarks

This constructor is called automatically to initialize the GridColumn.FilterInfo column property. As a result, no filtering is initially assigned to columns. You can also use this constructor in applications to create a ColumnFilterInfo object with default settings. Assigning the created object to the GridColumn.FilterInfo column property will result in clearing the column’s filter.

To assign a particular filter condition to a column, create a ColumnFilterInfo object with custom settings using other constructor overloads. Assign the created object to the column’s GridColumn.FilterInfo property to apply the specified filter condition.

See Also