Class VirtualGridCreateRowEventArgs
Provides data for the CreateRowElement event.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class VirtualGridCreateRowEventArgs
Constructors
VirtualGridCreateRowEventArgs(Int32, Type, VirtualGridViewInfo)
Initializes a new instance of the VirtualGridCreateRowEventArgs class.
Declaration
public VirtualGridCreateRowEventArgs(int rowIndex, Type rowType, VirtualGridViewInfo viewInfo)
Parameters
|
System.Int32
rowIndex
Index of the row. |
|
System.Type
rowType
Type of the row. |
|
VirtualGridViewInfo
viewInfo
The view info. |
Properties
RowElement
Gets or sets the row element.
Declaration
public VirtualGridRowElement RowElement { get; set; }
Property Value
|
VirtualGridRowElement
|
RowIndex
Gets the index of the row.
Declaration
public int RowIndex { get; }
Property Value
|
System.Int32
|
RowType
Gets or sets the type of the row.
Declaration
public Type RowType { get; set; }
Property Value
|
System.Type
|
ViewInfo
Gets the view info of the row.
Declaration
public VirtualGridViewInfo ViewInfo { get; }
Property Value
|
VirtualGridViewInfo
|