Class GridViewCreateRowEventArgs
Provides data for the CreateCell event
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class GridViewCreateRowEventArgs : EventArgs
Constructors
GridViewCreateRowEventArgs(GridViewRowInfo, Type)
Initializes a new instance of the GridViewCreateCellEventArgs class.
Declaration
public GridViewCreateRowEventArgs(GridViewRowInfo rowInfo, Type defaultRowType)
Parameters
GridViewRowInfo
rowInfo
The GridRowElement that will contian the newly created cell |
System.Type
defaultRowType
The default row type that will be used |
Properties
RowElement
Gets or sets the row instance that will be added to grid row.
Declaration
public GridRowElement RowElement { get; set; }
Property Value
GridRowElement
|
RowInfo
Gets the GridViewRowInfo that needs to be associated
Declaration
public GridViewRowInfo RowInfo { get; }
Property Value
GridViewRowInfo
|
RowType
Gets ot sets the type of the GridRowElement that will be created for the specified row and column
Declaration
public Type RowType { get; set; }
Property Value
System.Type
|