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

DataControlBase.AllowColumnMRUFilterList Property

Gets or sets whether recently used filter items are displayed in the Filter Dropdowns for columns. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v18.2.Core.dll

Declaration

public bool AllowColumnMRUFilterList { get; set; }

Property Value

Type Description
Boolean

true if the columns’ filter dropdown lists can display recently used filter items; otherwise, false.

Remarks

Filter dropdowns displayed by columns support recently used filter items. These represent filter items that were recently selected by an end-user. If the AllowColumnMRUFilterList property is set to true, recently used filter items are displayed at the top of the columns’ filter dropdowns. If this property is set to false, these items aren’t displayed. The maximum number of recently used filter items stored for each column, is specified by the DataControlBase.MRUColumnFilterListCount property.

See Also