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

VGridControlBase.ClearFindFilter() Method

Discards the query in the Find Panel.

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v19.1.dll

Declaration

public void ClearFindFilter()

Remarks

Use the ApplyFindFilter(String) and ClearFindFilter() methods to apply and discard a search/filter query in code. See Find Panel Syntax to learn how to build queries.

// Specify a query.
vGridControl1.ApplyFindFilter("foo");

// Discard the query.
vGridControl1.ClearFindFilter();
// You can also pass an empty string
// to discard the query.
vGridControl1.ApplyFindFilter(String.Empty);
See Also