Type | Description | |||
Group as Group | A Group object being removed. |
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 |
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 |
<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