DataGridViewColumnEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Represents the method that will handle column-related events of a DataGridView.
- C#
- VB.NET
public delegate void DataGridViewColumnEventHandler(Object sender, DataGridViewColumnEventArgs e)
Public Delegate Sub DataGridViewColumnEventHandler(ByVal sender As [Object], ByVal e As DataGridViewColumnEventArgs)
Parameters
| Name | Type | Description |
|---|---|---|
| sender | Object | The source of the event. |
| e | DataGridViewColumnEventArgs | A DataGridViewColumnEventArgs that contains the event data. |
Fired By
| Name | Description |
|---|---|
| DataGridView.ColumnAdded | Fired when a column is added to the control. |
| DataGridView.ColumnRemoved | Fired when a column is removed from the control. |
| DataGridView.ColumnDisplayIndexChanged | Fired when the value the DisplayIndex property for a column changes. |
| DataGridView.ColumnWidthChanged | Fired when the value of the Width property for a column changes. |
| DataGridView.ColumnMinimumWidthChanged | Fired when the value of the MinimumWidth property for a column changes. |
| DataGridView.ColumnMaximumWidthChanged | Fired when the value of the MaximumWidth property for a column changes. |
| DataGridView.ColumnSortModeChanged | Fired when the value of the SortMode property changes. |
| DataGridView.ColumnNameChanged | Fired when the Name property changes. |
| DataGridView.ColumnFillWeightChanged | Fired when the FillWeight property changes. |