Skip to main content

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