Share via


ModuleListPage.OnClearFilter Method

Definition

When implemented in a derived class, clears the ModuleListPageFilter object.

protected:
 virtual void OnClearFilter();
protected virtual void OnClearFilter ();
abstract member OnClearFilter : unit -> unit
override this.OnClearFilter : unit -> unit
Protected Overridable Sub OnClearFilter ()

Examples

The following example implements the OnClearFilter method.

protected override void OnClearFilter() {

    _filter = null;
    Refresh();
    RefreshSearchPanel();

}

Remarks

The base class implementation throws a System.InvalidOperationException exception.

For more information, see the Filter property.

Applies to