Skip to main content
All docs
V23.2

TreeListView.AutoFilterRowPosition Property

Gets or sets where to display the Automatic Filter Row.

Namespace: DevExpress.Xpf.Grid

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

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

public AutoFilterRowPosition AutoFilterRowPosition { get; set; }

Property Value

Type Default Description
AutoFilterRowPosition Cell

The Automatic Filter Row‘s position.

Available values:

Name Description
Cell

Displays the Automatic Filter Row as the first row in the GridControl.

Header

Embeds the Automatic Filter Row into the Column Header Panel.

Remarks

Set the TreeListView.ShowAutoFilterRow property to true to display the Automatic Filter Row:

Automatic Filter Row

The AutoFilterRowPosition property allows you to specify where to display the Automatic Filter Row. Set this property to Header to embed the Automatic Filter Row into the Column Header Panel. In this case, the GridControl adds “magnifying glass” icons (Header Filter Icon) to column headers. These icons become visible when a user hovers the mouse pointer over a header. Once a user clicks on such an icon, the entire column header becomes the Automatic Filter Row‘s cell:

Automatic Filter Row in Column Headers

Refer to the following help topic for more information: Automatic Filter Row.

See Also