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