event RemoveGroup (Group as Group)
Fired when a group is removed.

TypeDescription
Group as Group A Group object being removed.
Use the RemoveGroup event to notify your application that a group is released. Use the RemoveGroup event to release any extra data stored by the group. The Remove method fires the RemoveGroup event for each group removed. Use the RemoveItem event to notify your application that an item is deleted.

Syntax for RemoveGroup event, /NET version, on:

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

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

Syntax for RemoveGroup event, /COM version, on:

private void RemoveGroup(object sender, AxEXPLORERTREELib._IExplorerTreeEvents_RemoveGroupEvent e)
{
}

void OnRemoveGroup(LPDISPATCH Group)
{
}

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

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

procedure RemoveGroup(sender: System.Object; e: AxEXPLORERTREELib._IExplorerTreeEvents_RemoveGroupEvent);
begin
end;

begin event RemoveGroup(oleobject Group)
end event RemoveGroup

Private Sub RemoveGroup(ByVal sender As System.Object, ByVal e As AxEXPLORERTREELib._IExplorerTreeEvents_RemoveGroupEvent) Handles RemoveGroup
End Sub

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

Private Sub RemoveGroup(ByVal Group As Object)
End Sub

LPARAMETERS Group

PROCEDURE OnRemoveGroup(oExplorerTree,Group)
RETURN

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

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

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

Procedure OnComRemoveGroup Variant llGroup
	Forward Send OnComRemoveGroup llGroup
End_Procedure

METHOD OCX_RemoveGroup(Group) CLASS MainDialog
RETURN NIL

void onEvent_RemoveGroup(COM _Group)
{
}

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

function nativeObject_RemoveGroup(Group)
return

The following sample displays the group's caption being deleted:

Private Sub ExplorerTree1_RemoveGroup(ByVal Group As EXPLORERTREELibCtl.IGroup)
    Debug.Print Group.Caption
End Sub