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

ColumnViewOptionsFilter.MRUFilterListCount Property

Gets or sets the capacity of the View’s MRU (Most Recently Used) Filter List.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

[DefaultValue(10)]
[XtraSerializableProperty]
public virtual int MRUFilterListCount { get; set; }

Property Value

Type Default Description
Int32 10

An integer that specifies the maximum number of filter conditions that have recently been applied to the View.

Property Paths

You can access this nested property as listed below:

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

Remarks

Each View maintains a list that stores the unique recently used filter conditions. The MRUFilterListCount property determines the capacity of this list. When the ColumnViewOptionsFilter.AllowMRUFilterList property is set to true the recently used filters can be accessed via the View’s MRU Filter List.

See Also