Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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