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

TreeListView.ShowAutoFilterRow Property

Gets or sets whether to display the Automatic Filter Row. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Grid.Core, DevExpress.Wpf.Grid.Core

Declaration

public bool ShowAutoFilterRow { get; set; }

Property Value

Type Default Description
Boolean false

true, to display the automatic filter row; otherwise, false.

Remarks

End users can type text into the Automatic Filter Row to filter data against the entered values. To show the Automatic Filter Row, set the ShowAutoFilterRow property to true:

<dxg:GridControl.View>
    <dxg:TreeListView ShowAutoFilterRow="True"/>
</dxg:GridControl.View>

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

Refer to the Automatic Filter Row topic for more information.

See Also