DataGridViewColumnEventHandler Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.