![]() | Type | Description | ||
| Group as Group | A Group object where the user clicks the column's caption. | |||
| Column as Column | A Column object being clicked. |
The following sample displays the caption of the column being clicked:
Private Sub ExplorerTree1_ColumnClick(ByVal Group As EXPLORERTREELibCtl.IGroup, ByVal Column As EXPLORERTREELibCtl.IColumn)
Debug.Print "The '" & Group.Caption & "." & Column.Caption & "' column is clicked."
End Sub