DataGridViewColumnEventHandler Delegate

Definition

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

public delegate void DataGridViewColumnEventHandler(System::Object ^ sender, DataGridViewColumnEventArgs ^ e);
public delegate void DataGridViewColumnEventHandler(object sender, DataGridViewColumnEventArgs e);
public delegate void DataGridViewColumnEventHandler(object? sender, DataGridViewColumnEventArgs e);
type DataGridViewColumnEventHandler = delegate of obj * DataGridViewColumnEventArgs -> unit
Public Delegate Sub DataGridViewColumnEventHandler(sender As Object, e As DataGridViewColumnEventArgs)

Parameters

sender
Object

The source of the event.

e
DataGridViewColumnEventArgs

A DataGridViewColumnEventArgs that contains the event data.

Remarks

DataGridViewColumnEventArgs provides data for the following DataGridView events:

Extension Methods

GetMethodInfo(Delegate)

Gets an object that represents the method represented by the specified delegate.

Applies to

See also