VGridControlBase.ClearFindFilter() Method
Discards the query in the Find Panel.
Namespace: DevExpress.XtraVerticalGrid
Assembly: DevExpress.XtraVerticalGrid.v24.1.dll
NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid
Declaration
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