![]() | 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 Sub