'Declaration
<SRCategoryAttribute("CatAction")> <SRDescriptionAttribute("DataGridView_ColumnAddedDescr")> Public Event ColumnAdded As System.Windows.Forms.DataGridViewColumnEventHandler
'Usage
Dim instance As NDataGridView Dim handler As System.Windows.Forms.DataGridViewColumnEventHandler AddHandler instance.ColumnAdded, handler
[SRCategory("CatAction")] [SRDescription("DataGridView_ColumnAddedDescr")] public event System.Windows.Forms.DataGridViewColumnEventHandler ColumnAdded
Event Data
The event handler receives an argument of type System.Windows.Forms.DataGridViewColumnEventArgs containing data related to this event. The following DataGridViewColumnEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Column | Gets the column that the event occurs for. |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also