Class
VirtualGridCreateCellEventArgs

Provides data for the CreateCellElement event.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

cs-api-definition
public class VirtualGridCreateCellEventArgs

Inheritance: objectVirtualGridCreateCellEventArgs

Constructors

VirtualGridCreateCellEventArgs(int, int, Type, VirtualGridViewInfo)

Initializes a new instance of the VirtualGridCreateCellEventArgs class.

Declaration

cs-api-definition
public VirtualGridCreateCellEventArgs(int columnIndex, int rowIndex, Type cellType, VirtualGridViewInfo viewInfo)

Parameters

columnIndex

int

Index of the column.

rowIndex

int

Index of the row.

cellType

Type

Type of the cell.

viewInfo

VirtualGridViewInfo

The view info.

Properties

CellElement

Gets or sets the cell element.

Declaration

cs-api-definition
public VirtualGridCellElement CellElement { get; set; }

Property Value

VirtualGridCellElement

CellType

Gets or sets the type of the cell.

Declaration

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

Property Value

Type

ColumnIndex

Gets the column index of the cell.

Declaration

cs-api-definition
public int ColumnIndex { get; }

Property Value

int

RowIndex

Gets the row index of the cell.

Declaration

cs-api-definition
public int RowIndex { get; }

Property Value

int

ViewInfo

Gets the view info of the cell.

Declaration

cs-api-definition
public VirtualGridViewInfo ViewInfo { get; }

Property Value

VirtualGridViewInfo