Class CellValueEventArgs
Represents event arguments for the CellValueNeeded event.
Inheritance
System.Object
CellValueEventArgs
Namespace: Telerik.Windows.Controls.VirtualGrid
Assembly: Telerik.Windows.Controls.VirtualGrid.dll
Syntax
public class CellValueEventArgs : EventArgs
Constructors
CellValueEventArgs()
Declaration
public CellValueEventArgs()
Properties
ColumnIndex
Gets the index of the column.
Declaration
public int ColumnIndex { get; }
Property Value
System.Int32
|
RowIndex
Gets the index of the row.
Declaration
public int RowIndex { get; }
Property Value
System.Int32
|
Value
Gets or sets the value.
Declaration
public object Value { get; set; }
Property Value
System.Object
|