FilteringUIContext.ResetFilterCommand Property
Returns a command that resets all filters that are applied to the data control.
Namespace: DevExpress.Maui.Core
Assembly: DevExpress.Maui.Core.dll
NuGet Package: DevExpress.Maui.Core
Declaration
public ICommand ResetFilterCommand { get; }
Property Value
Type | Description |
---|---|
ICommand | A command object that resets filters. |
Remarks
The following example shows how to reset filters when users tap the Clear toolbar item:
<ContentPage.ToolbarItems>
<ToolbarItem Command="{Binding ResetFilterCommand}" Text="Clear"/>
</ContentPage.ToolbarItems>
See Also