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.MRUColumnFilterListCount Property

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

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v24.2.dll

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

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