Class GridViewCreateCellEventArgs
Provides data for the CreateCell event
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class GridViewCreateCellEventArgs : EventArgs
Constructors
GridViewCreateCellEventArgs(GridRowElement, GridViewColumn, Type)
Initializes a new instance of the GridViewCreateCellEventArgs class.
Declaration
public GridViewCreateCellEventArgs(GridRowElement row, GridViewColumn column, Type defaultCellType)
Parameters
GridRowElement
row
The GridRowElement that will contain the newly created cell |
GridViewColumn
column
The specified GridViewColumn |
System.Type
defaultCellType
The default cell type that will be used |
Properties
CellElement
Gets or sets the cell instance that will be added to grid row.
Declaration
public GridCellElement CellElement { get; set; }
Property Value
GridCellElement
|
CellType
Gets or sets the type of the GridCellElement that will be created for the specified row and column
Declaration
public Type CellType { get; set; }
Property Value
System.Type
|
Column
Gets the specified GridViewColumn
Declaration
public GridViewColumn Column { get; }
Property Value
GridViewColumn
|
Row
Gets the GridRowElement that will contain the newly created cell
Declaration
public GridRowElement Row { get; }
Property Value
GridRowElement
|