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

GridColumn.MRUFilters Property

Provides access to the column’s recently used filters.

Namespace: DevExpress.XtraGrid.Columns

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

[Browsable(false)]
public ColumnFilterInfoCollection MRUFilters { get; }

Property Value

Type Description
DevExpress.XtraGrid.Columns.ColumnFilterInfoCollection

A DevExpress.XtraGrid.Columns.ColumnFilterInfoCollection object that stores the recently used filters for the column.

Remarks

The MRUFilters property stores the unique filters which have recently been applied to the current column.

The recently used filters are displayed by the column’s filter dropdown list provided that the ColumnViewOptionsFilter.AllowColumnMRUFilterList property is set to true. The capacity of the collection is controlled by the ColumnViewOptionsFilter.MRUColumnFilterListCount property. As a result this property also controls the maximum number of MRU items that the filter dropdown list can display.

You can use the MRUFilters property to customize the collection if necessary. Elements in the collection are represented by ColumnFilterInfo objects.

See Also