Class VirtualGridCellValueNeededEventArgs
Provides data for the CellValueNeeded event.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class VirtualGridCellValueNeededEventArgs : VirtualGridCellEventArgs
Constructors
VirtualGridCellValueNeededEventArgs(Int32, Int32, VirtualGridViewInfo)
Initializes a new instance of the VirtualGridCellValueNeededEventArgs class.
Declaration
public VirtualGridCellValueNeededEventArgs(int rowIndex, int columnIndex, VirtualGridViewInfo viewInfo)
Parameters
System.Int32
rowIndex
Index of the row. |
System.Int32
columnIndex
Index of the column. |
VirtualGridViewInfo
viewInfo
The view info. |
Properties
FieldName
Gets or sets the name of the field that the cell will display.
Declaration
public string FieldName { get; set; }
Property Value
System.String
|
FormatString
Gets or sets the format string of the cell.
Declaration
public string FormatString { get; set; }
Property Value
System.String
|
Value
Gets or sets the value of the cell.
Declaration
public object Value { get; set; }
Property Value
System.Object
|