Fired after the user clicks on column's header.
![]() | Type | Description | ||
| Column as Column | A Column object that indicates clicked column. |
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 ColumnFromPoint property to access the column from point. Use the ItemFromPoint property to access the item from point. The control fires Sort method when the control sorts a column. Use the MouseDown or MouseUp event to notify the control when the user clicks the control, including the columns.
The following VB sample displays the caption of the column being clicked:
Private Sub G2antt1_ColumnClick(ByVal Column As EXG2ANTTLibCtl.IColumn)
Debug.Print Column.Caption
End Sub
The following C++ sample displays the caption of the column being clicked:
#include "Column.h"
void OnColumnClickG2antt1(LPDISPATCH Column)
{
CColumn column( Column );
column.m_bAutoRelease = FALSE;
MessageBox( column.GetCaption() );
}
The following VB.NET sample displays the caption of the column being clicked:
Private Sub AxG2antt1_ColumnClick(ByVal sender As Object, ByVal e As AxEXG2ANTTLib._IG2anttEvents_ColumnClickEvent) Handles AxG2antt1.ColumnClick
MessageBox.Show(e.column.Caption)
End Sub
The following C# sample displays the caption of the column being clicked:
private void axG2antt1_ColumnClick(object sender, AxEXG2ANTTLib._IG2anttEvents_ColumnClickEvent e)
{
MessageBox.Show( e.column.Caption );
}
The following VFP sample displays the caption of the column being clicked:
*** ActiveX Control Event *** LPARAMETERS column with column wait window nowait .Caption endwith