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

TableView.ShowAutoFilterRow Property

Gets or sets whether to display the Automatic Filter Row.

Namespace: DevExpress.Xpf.Grid

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

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:TableView ShowAutoFilterRow="True"/>
</dxg:GridControl.View>

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

Refer to the Automatic Filter Row topic for more information.

The following code snippets (auto-collected from DevExpress Examples) contain references to the ShowAutoFilterRow property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also