'Declaration
<SRCategoryAttribute("CatData")> <System.ComponentModel.EditorBrowsableAttribute(EditorBrowsableState.Advanced)> <SRDescriptionAttribute("DataGridView_CellValuePushedDescr")> Public Event CellValuePushed As System.Windows.Forms.DataGridViewCellValueEventHandler
'Usage
Dim instance As NDataGridView Dim handler As System.Windows.Forms.DataGridViewCellValueEventHandler AddHandler instance.CellValuePushed, handler
[SRCategory("CatData")] [System.ComponentModel.EditorBrowsable(EditorBrowsableState.Advanced)] [SRDescription("DataGridView_CellValuePushedDescr")] public event System.Windows.Forms.DataGridViewCellValueEventHandler CellValuePushed
Event Data
The event handler receives an argument of type System.Windows.Forms.DataGridViewCellValueEventArgs containing data related to this event. The following DataGridViewCellValueEventArgs properties provide information specific to this event.
Property | Description |
---|---|
ColumnIndex | Gets a value indicating the column index of the cell that the event occurs for. |
RowIndex | Gets a value indicating the row index of the cell that the event occurs for. |
Value | Gets or sets the value of the cell that the event occurs for. |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also