Skip to main content

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.v23.2.dll

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

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
ColumnView
.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