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

ColumnViewOptionsFilter.MRUColumnFilterListCount Property

Gets or sets the capacity of the MRU item lists in column filter dropdowns.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v19.2.dll

Declaration

[DefaultValue(5)]
[XtraSerializableProperty]
public virtual int MRUColumnFilterListCount { get; set; }

Property Value

Type Default Description
Int32 5

An integer specifying the capacity of the lists that store the recently used filter items for the View’s columns.

Property Paths

You can access this nested property as listed below:

Object Type Path to MRUColumnFilterListCount
AdvBandedGridView
.OptionsFilter.MRUColumnFilterListCount
BandedGridView
.OptionsFilter.MRUColumnFilterListCount
ColumnView
.OptionsFilter.MRUColumnFilterListCount
CardView
.OptionsFilter.MRUColumnFilterListCount
GridView
.OptionsFilter.MRUColumnFilterListCount
LayoutView
.OptionsFilter.MRUColumnFilterListCount
TileView
.OptionsFilter.MRUColumnFilterListCount
WinExplorerView
.OptionsFilter.MRUColumnFilterListCount

Remarks

When an end-user selects a specific item from a column’s filter dropdown list, this item is copied to the column’s MRU Filter List (the GridColumn.MRUFilters collection). The MRUColumnFilterListCount property specifies the capacity of these lists.

See Filter and Search to learn more.

See Also