Skip to main content
Version: 3.5

DataGridViewCellValueEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Provides data for the CellValueNeeded and CellValuePushed events of the DataGridView control.

public class DataGridViewCellValueEventArgs : EventArgs

Constructors

Instance memberDataGridViewCellValueEventArgs(columnIndex, rowIndex, value)

Initializes a new instance of the DataGridViewCellValueEventArgs class.

NameTypeDescription
columnIndexInt32The index of the column containing the cell that the event occurs for.
rowIndexInt32The index of the row containing the cell that the event occurs for.
valueObjectThe current value or null.

Throws:

Properties

Instance memberColumnIndex

Int32: Returns a value indicating the column index of the cell that the event occurs for.

Instance memberRowIndex

Int32: Returns a value indicating the row index of the cell that the event occurs for.

Instance memberValue

Object: Returns or sets the value of the cell that the event occurs for.

Used By

NameDescription
DataGridViewCellValueEventHandlerRepresents the method that will handle the CellValueNeeded event or CellValuePushed event of a DataGridView.