ClassGridViewCellValueEventArgs
Provides data for events related to cell and row operations.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
public class GridViewCellValueEventArgs : EventArgs
Inheritance: objectEventArgsGridViewCellValueEventArgs
Inherited Members
Constructors
GridViewCellValueEventArgs(GridViewRowInfo, GridViewColumn)
Declaration
public GridViewCellValueEventArgs(GridViewRowInfo rowInfo, GridViewColumn column)
Parameters
rowInfo
column
GridViewCellValueEventArgs(int, int)
Initializes a new instance of the class.
Declaration
public GridViewCellValueEventArgs(int columnIndex, int rowIndex)
Parameters
columnIndex
The index of the column containing the cell that the event occurs for.
rowIndex
The index of the row containing the cell that the event occurs for.
Exceptions
columnIndex is less than -1.-or-rowIndex is less than -1.
Properties
Column
Gets the cell column.
ColumnIndex
Gets a value indicating the column index of the cell that the event occurs for.
Declaration
public int ColumnIndex { get; }
Property Value
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
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