event FilterChange (Group as Group)
Occurs when filter was changed.

TypeDescription
Group as Group A Group object where the filter is changed.
Use the FilterChange event to notify your application that the group's filter is changed. The ApplyFilter and ClearFilter methods fire the FilterChange event. Use the DisplayFilterButton property to display the column's filter button.

Syntax for FilterChange event, /NET version, on:

private void FilterChange(object sender,exontrol.EXPLORERTREELib.Group Group)
{
}

Private Sub FilterChange(ByVal sender As System.Object,ByVal Group As exontrol.EXPLORERTREELib.Group) Handles FilterChange
End Sub

Syntax for FilterChange event, /COM version, on:

private void FilterChange(object sender, AxEXPLORERTREELib._IExplorerTreeEvents_FilterChangeEvent e)
{
}

void OnFilterChange(LPDISPATCH Group)
{
}

void __fastcall FilterChange(TObject *Sender,Explorertreelib_tlb::IGroup *Group)
{
}

procedure FilterChange(ASender: TObject; Group : IGroup);
begin
end;

procedure FilterChange(sender: System.Object; e: AxEXPLORERTREELib._IExplorerTreeEvents_FilterChangeEvent);
begin
end;

begin event FilterChange(oleobject Group)
end event FilterChange

Private Sub FilterChange(ByVal sender As System.Object, ByVal e As AxEXPLORERTREELib._IExplorerTreeEvents_FilterChangeEvent) Handles FilterChange
End Sub

Private Sub FilterChange(ByVal Group As EXPLORERTREELibCtl.IGroup)
End Sub

Private Sub FilterChange(ByVal Group As Object)
End Sub

LPARAMETERS Group

PROCEDURE OnFilterChange(oExplorerTree,Group)
RETURN

Syntax for FilterChange event, /COM version (others), on:

<SCRIPT EVENT="FilterChange(Group)" LANGUAGE="JScript">
</SCRIPT>

<SCRIPT LANGUAGE="VBScript">
Function FilterChange(Group)
End Function
</SCRIPT>

Procedure OnComFilterChange Variant llGroup
	Forward Send OnComFilterChange llGroup
End_Procedure

METHOD OCX_FilterChange(Group) CLASS MainDialog
RETURN NIL

void onEvent_FilterChange(COM _Group)
{
}

function FilterChange as v (Group as OLE::Exontrol.ExplorerTree.1::IGroup)
end function

function nativeObject_FilterChange(Group)
return

The following sample displays a new caption on the group's filter bar when the user changes the group's filter:

Private Sub ExplorerTree1_FilterChange(ByVal Group As EXPLORERTREELibCtl.IGroup)
    Group.FilterBarCaption = "Displays items that start with 'M'"
End Sub