Class VirtualGridCreateCellEventArgs
Provides data for the CreateCellElement event.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class VirtualGridCreateCellEventArgs
Constructors
VirtualGridCreateCellEventArgs(Int32, Int32, Type, VirtualGridViewInfo)
Initializes a new instance of the VirtualGridCreateCellEventArgs class.
Declaration
public VirtualGridCreateCellEventArgs(int columnIndex, int rowIndex, Type cellType, VirtualGridViewInfo viewInfo)
Parameters
System.Int32
columnIndex
Index of the column. |
System.Int32
rowIndex
Index of the row. |
System.Type
cellType
Type of the cell. |
VirtualGridViewInfo
viewInfo
The view info. |
Properties
CellElement
Gets or sets the cell element.
Declaration
public VirtualGridCellElement CellElement { get; set; }
Property Value
VirtualGridCellElement
|
CellType
Gets or sets the type of the cell.
Declaration
public Type CellType { get; set; }
Property Value
System.Type
|
ColumnIndex
Gets the column index of the cell.
Declaration
public int ColumnIndex { get; }
Property Value
System.Int32
|
RowIndex
Gets the row index of the cell.
Declaration
public int RowIndex { get; }
Property Value
System.Int32
|
ViewInfo
Gets the view info of the cell.
Declaration
public VirtualGridViewInfo ViewInfo { get; }
Property Value
VirtualGridViewInfo
|