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.
Syntax for ColumnClick event, /NET version, on:
private void ColumnClick(object sender,exontrol.EXGANTTLib.Column Column) { } Private Sub ColumnClick(ByVal sender As System.Object,ByVal Column As exontrol.EXGANTTLib.Column) Handles ColumnClick End Sub |
private void ColumnClick(object sender, AxEXGANTTLib._IGanttEvents_ColumnClickEvent e) { } void OnColumnClick(LPDISPATCH Column) { } void __fastcall ColumnClick(TObject *Sender,Exganttlib_tlb::IColumn *Column) { } procedure ColumnClick(ASender: TObject; Column : IColumn); begin end; procedure ColumnClick(sender: System.Object; e: AxEXGANTTLib._IGanttEvents_ColumnClickEvent); begin end; begin event ColumnClick(oleobject Column) end event ColumnClick Private Sub ColumnClick(ByVal sender As System.Object, ByVal e As AxEXGANTTLib._IGanttEvents_ColumnClickEvent) Handles ColumnClick End Sub Private Sub ColumnClick(ByVal Column As EXGANTTLibCtl.IColumn) End Sub Private Sub ColumnClick(ByVal Column As Object) End Sub LPARAMETERS Column PROCEDURE OnColumnClick(oGantt,Column) RETURN |
<SCRIPT EVENT="ColumnClick(Column)" LANGUAGE="JScript"> </SCRIPT> <SCRIPT LANGUAGE="VBScript"> Function ColumnClick(Column) End Function </SCRIPT> Procedure OnComColumnClick Variant llColumn Forward Send OnComColumnClick llColumn End_Procedure METHOD OCX_ColumnClick(Column) CLASS MainDialog RETURN NIL void onEvent_ColumnClick(COM _Column) { } function ColumnClick as v (Column as OLE::Exontrol.Gantt.1::IColumn) end function function nativeObject_ColumnClick(Column) return |
The following VB sample displays the caption of the column being clicked:
Private Sub Gantt1_ColumnClick(ByVal Column As EXGANTTLibCtl.IColumn) Debug.Print Column.Caption End Sub
The following C++ sample displays the caption of the column being clicked:
#include "Column.h" void OnColumnClickGantt1(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 AxGantt1_ColumnClick(ByVal sender As Object, ByVal e As AxEXGANTTLib._IGanttEvents_ColumnClickEvent) Handles AxGantt1.ColumnClick MessageBox.Show(e.column.Caption) End Sub
The following C# sample displays the caption of the column being clicked:
private void axGantt1_ColumnClick(object sender, AxEXGANTTLib._IGanttEvents_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