DataControlBase.ShowAutoFilterRow Property
In This Article
Gets or sets whether to display the Automatic Filter Row.
Namespace: DevExpress.WinUI.Grid
Assembly: DevExpress.WinUI.Grid.v23.2.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.
To allow users to choose a criteria type in the Automatic Filter Row, set the ColumnBase.ShowCriteriaInAutoFilterRow property to true.
See Also