Class GridViewCellValueEventArgs
Provides data for Telerik.WinControls.UI.DataGridView events related to cell and row operations.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class GridViewCellValueEventArgs : EventArgs
Constructors
GridViewCellValueEventArgs(Int32, Int32)
Initializes a new instance of the Telerik.WinControls.UIViewCellEventArgs class.
Declaration
public GridViewCellValueEventArgs(int columnIndex, int rowIndex)
Parameters
System.Int32
columnIndex
The index of the column containing the cell that the event occurs for. |
System.Int32
rowIndex
The index of the row containing the cell that the event occurs for. |
Exceptions
System.ArgumentOutOfRangeException
columnIndex is less than -1.-or-rowIndex is less than -1. |
GridViewCellValueEventArgs(GridViewRowInfo, GridViewColumn)
Declaration
public GridViewCellValueEventArgs(GridViewRowInfo rowInfo, GridViewColumn column)
Parameters
GridViewRowInfo
rowInfo
|
GridViewColumn
column
|
Properties
Column
Gets the cell column.
Declaration
public GridViewColumn Column { get; }
Property Value
GridViewColumn
|
ColumnIndex
Gets a value indicating the column index of the cell that the event occurs for.
Declaration
public int ColumnIndex { get; }
Property Value
System.Int32
The index of the column containing the cell that the event occurs for. |
RowIndex
Gets a value indicating the row index of the cell that the event occurs for.
Declaration
public int RowIndex { get; }
Property Value
System.Int32
The index of the row containing the cell that the event occurs for. |
RowInfo
Gets the cell row.
Declaration
public GridViewRowInfo RowInfo { get; }
Property Value
GridViewRowInfo
|
Value
Gets the cell value.
Declaration
public object Value { get; set; }
Property Value
System.Object
|