Type | Description | |||
Group as Group | A Group object where selection is changed. |
The following sample displays the list of selected items within the group:
Private Sub ExplorerTree1_SelectionChanged(ByVal Group As EXPLORERTREELibCtl.IGroup) With Group.Items If (.SelectCount > 0) Then Dim i As Long For i = 0 To .SelectCount - 1 Debug.Print .CellCaption(.SelectedItem(i), 0) Next End If End With End SubSyntax for SelectionChanged event, /NET version, on:
private void SelectionChanged(object sender,exontrol.EXPLORERTREELib.Group Group) { } Private Sub SelectionChanged(ByVal sender As System.Object,ByVal Group As exontrol.EXPLORERTREELib.Group) Handles SelectionChanged End Sub |
private void SelectionChanged(object sender, AxEXPLORERTREELib._IExplorerTreeEvents_SelectionChangedEvent e) { } void OnSelectionChanged(LPDISPATCH Group) { } void __fastcall SelectionChanged(TObject *Sender,Explorertreelib_tlb::IGroup *Group) { } procedure SelectionChanged(ASender: TObject; Group : IGroup); begin end; procedure SelectionChanged(sender: System.Object; e: AxEXPLORERTREELib._IExplorerTreeEvents_SelectionChangedEvent); begin end; begin event SelectionChanged(oleobject Group) end event SelectionChanged Private Sub SelectionChanged(ByVal sender As System.Object, ByVal e As AxEXPLORERTREELib._IExplorerTreeEvents_SelectionChangedEvent) Handles SelectionChanged End Sub Private Sub SelectionChanged(ByVal Group As EXPLORERTREELibCtl.IGroup) End Sub Private Sub SelectionChanged(ByVal Group As Object) End Sub LPARAMETERS Group PROCEDURE OnSelectionChanged(oExplorerTree,Group) RETURN |
<SCRIPT EVENT="SelectionChanged(Group)" LANGUAGE="JScript"> </SCRIPT> <SCRIPT LANGUAGE="VBScript"> Function SelectionChanged(Group) End Function </SCRIPT> Procedure OnComSelectionChanged Variant llGroup Forward Send OnComSelectionChanged llGroup End_Procedure METHOD OCX_SelectionChanged(Group) CLASS MainDialog RETURN NIL void onEvent_SelectionChanged(COM _Group) { } function SelectionChanged as v (Group as OLE::Exontrol.ExplorerTree.1::IGroup) end function function nativeObject_SelectionChanged(Group) return |