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
public GridViewCellValueEventArgs(GridViewRowInfo rowInfo, GridViewColumn column)
Initializes a new instance of the class.
public GridViewCellValueEventArgs(int columnIndex, int rowIndex)
The index of the column containing the cell that the event occurs for.
rowIndexintThe 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
Gets the cell column.
public GridViewColumn Column { get; }
Gets a value indicating the column index of the cell that the event occurs for.
public int ColumnIndex { get; }
The index of the column containing the cell that the event occurs for.
Gets a value indicating the row index of the cell that the event occurs for.
public int RowIndex { get; }
The index of the row containing the cell that the event occurs for.
Gets the cell row.
public GridViewRowInfo RowInfo { get; }