Class
GridViewCreateCellEventArgs

Provides data for the CreateCell event

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

cs-api-definition
public class GridViewCreateCellEventArgs : EventArgs

Inheritance: objectEventArgsGridViewCreateCellEventArgs

Inherited Members EventArgs.Empty

Constructors

GridViewCreateCellEventArgs(GridRowElement, GridViewColumn, Type)

Initializes a new instance of the GridViewCreateCellEventArgs class.

Declaration

cs-api-definition
public GridViewCreateCellEventArgs(GridRowElement row, GridViewColumn column, Type defaultCellType)

Parameters

row

GridRowElement

The GridRowElement that will contain the newly created cell

column

GridViewColumn

The specified GridViewColumn

defaultCellType

Type

The default cell type that will be used

Properties

CellElement

Gets or sets the cell instance that will be added to grid row.

Declaration

cs-api-definition
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

cs-api-definition
public Type CellType { get; set; }

Property Value

Type

Column

Gets the specified GridViewColumn

Declaration

cs-api-definition
public GridViewColumn Column { get; }

Property Value

GridViewColumn

Row

Gets the GridRowElement that will contain the newly created cell

Declaration

cs-api-definition
public GridRowElement Row { get; }

Property Value

GridRowElement