Fired before deleting a column.
Type | Description | |||
Column as Column | A Column object being removed. |
The RemoveColumn event is invoked when the control is about to remove a column. Use the RemoveColumn event to release any extra data associated to the column. Use the Remove method to remove a specific column from Columns collection. Use the Clear method to clear the columns collection. Use the RemoveItem method to remove an item. Use the RemoveAllItems method to remove all items. Use the CellData property to assign an extra data to a cell. Use the ItemData property to assign an extra data to an item. Use the Data property to assign an extra data to a column.
Syntax for RemoveColumn event, /NET version, on:
private void RemoveColumn(object sender,exontrol.EXG2ANTTLib.Column Column) { } Private Sub RemoveColumn(ByVal sender As System.Object,ByVal Column As exontrol.EXG2ANTTLib.Column) Handles RemoveColumn End Sub |
private void RemoveColumn(object sender, AxEXG2ANTTLib._IG2anttEvents_RemoveColumnEvent e) { } void OnRemoveColumn(LPDISPATCH Column) { } void __fastcall RemoveColumn(TObject *Sender,Exg2anttlib_tlb::IColumn *Column) { } procedure RemoveColumn(ASender: TObject; Column : IColumn); begin end; procedure RemoveColumn(sender: System.Object; e: AxEXG2ANTTLib._IG2anttEvents_RemoveColumnEvent); begin end; begin event RemoveColumn(oleobject Column) end event RemoveColumn Private Sub RemoveColumn(ByVal sender As System.Object, ByVal e As AxEXG2ANTTLib._IG2anttEvents_RemoveColumnEvent) Handles RemoveColumn End Sub Private Sub RemoveColumn(ByVal Column As EXG2ANTTLibCtl.IColumn) End Sub Private Sub RemoveColumn(ByVal Column As Object) End Sub LPARAMETERS Column PROCEDURE OnRemoveColumn(oG2antt,Column) RETURN |
<SCRIPT EVENT="RemoveColumn(Column)" LANGUAGE="JScript"> </SCRIPT> <SCRIPT LANGUAGE="VBScript"> Function RemoveColumn(Column) End Function </SCRIPT> Procedure OnComRemoveColumn Variant llColumn Forward Send OnComRemoveColumn llColumn End_Procedure METHOD OCX_RemoveColumn(Column) CLASS MainDialog RETURN NIL void onEvent_RemoveColumn(COM _Column) { } function RemoveColumn as v (Column as OLE::Exontrol.G2antt.1::IColumn) end function function nativeObject_RemoveColumn(Column) return |