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

DataControlBase.ShowAutoFilterRow Property

Gets or sets whether to display the Automatic Filter Row.

Namespace: DevExpress.WinUI.Grid

Assembly: DevExpress.WinUI.Grid.v22.1.dll

NuGet Package: DevExpress.WinUI

Declaration

[DP(false, Handler = "OnShowAutoFilterRowChanged")]
public bool ShowAutoFilterRow { get; set; }

Property Value

Type Description
Boolean

true to display the Automatic Filter Row; otherwise, false.

Remarks

The automatic filter row allows users to filter data. When a user types text in the row, the GridControl creates a filter condition based upon the value entered and applies it to the column.

Auto Filter Row

To allow users to choose a criteria type in the Automatic Filter Row, set the ColumnBase.ShowCriteriaInAutoFilterRow property to true.

See Also