Skip to main content
Version: 3.5

DataGridViewColumnEventHandler

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Represents the method that will handle column-related events of a DataGridView.

public delegate void DataGridViewColumnEventHandler(Object sender, DataGridViewColumnEventArgs e)

Parameters

NameTypeDescription
senderObjectThe source of the event.
eDataGridViewColumnEventArgsA DataGridViewColumnEventArgs that contains the event data.

Fired By

NameDescription
DataGridView.ColumnAddedFired when a column is added to the control.
DataGridView.ColumnRemovedFired when a column is removed from the control.
DataGridView.ColumnDisplayIndexChangedFired when the value the DisplayIndex property for a column changes.
DataGridView.ColumnWidthChangedFired when the value of the Width property for a column changes.
DataGridView.ColumnMinimumWidthChangedFired when the value of the MinimumWidth property for a column changes.
DataGridView.ColumnMaximumWidthChangedFired when the value of the MaximumWidth property for a column changes.
DataGridView.ColumnSortModeChangedFired when the value of the SortMode property changes.
DataGridView.ColumnNameChangedFired when the Name property changes.
DataGridView.ColumnFillWeightChangedFired when the FillWeight property changes.