DataGridViewCellCommandEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Represents the method that will handle the CellCommandNeeded event of a DataGridView.
- C#
- VB.NET
public delegate void DataGridViewCellCommandEventHandler(Object sender, DataGridViewCellCommandEventArgs e)
Public Delegate Sub DataGridViewCellCommandEventHandler(ByVal sender As [Object], ByVal e As DataGridViewCellCommandEventArgs)
Parameters
| Name | Type | Description |
|---|---|---|
| sender | Object | The source of the event. |
| e | DataGridViewCellCommandEventArgs | A DataGridViewCellCommandEventArgs that contains the event data. |
Fired By
| Name | Description |
|---|---|
| DataGridView.CellCommandNeeded | Fired when the VirtualMode property of the DataGridView control is true and the DataGridView requires a command for a cell in order to execute a user action. |
| DataGridView.CellCommandPushed | Fired when the VirtualMode property of the DataGridView control is true and a cell command has changed and requires storage in the underlying data source. |