Class GridViewCellValueEventArgs
Provides data for Telerik.
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.
Declaration
public GridViewCellValueEventArgs(int columnIndex, int rowIndex)
Parameters
System. The index of the column containing the cell that the event occurs for. |
System. The index of the row containing the cell that the event occurs for. |
Exceptions
System. columnIndex is less than -1.-or-rowIndex is less than -1. |
GridViewCellValueEventArgs(GridViewRowInfo, GridViewColumn)
Declaration
public GridViewCellValueEventArgs(GridViewRowInfo rowInfo, GridViewColumn column)
Parameters
Grid
|
Grid
|
Properties
Column
Gets the cell column.
Declaration
public GridViewColumn Column { get; }
Property Value
ColumnIndex
Gets a value indicating the column index of the cell that the event occurs for.
Declaration
public int ColumnIndex { get; }
Property Value
System. 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. 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
Value
Gets the cell value.
Declaration
public object Value { get; set; }
Property Value
System.
|