event ColumnClick (Group as Group, Column as Column)
Fired after the user clicks on column's header.

 TypeDescription 
   Group as Group A Group object where the user clicks the column's caption.  
   Column as Column A Column object being clicked.  
The ColumnClick event is fired when the user clicks the column's header. By default, the control sorts by the column when user clicks the column's header. Use the SortOnClick property to specify the operation that control does when user clicks the column's caption. Use the Columns property to access the group's Columns collection.

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


Send comments on this topic.
© 1999-2008 Exontrol Inc, Software. All rights reserved.