Class
VirtualGridCreateRowEventArgs

Provides data for the CreateRowElement event.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

cs-api-definition
public class VirtualGridCreateRowEventArgs

Inheritance: objectVirtualGridCreateRowEventArgs

Constructors

VirtualGridCreateRowEventArgs(int, Type, VirtualGridViewInfo)

Initializes a new instance of the VirtualGridCreateRowEventArgs class.

Declaration

cs-api-definition
public VirtualGridCreateRowEventArgs(int rowIndex, Type rowType, VirtualGridViewInfo viewInfo)

Parameters

rowIndex

int

Index of the row.

rowType

Type

Type of the row.

viewInfo

VirtualGridViewInfo

The view info.

Properties

RowElement

Gets or sets the row element.

Declaration

cs-api-definition
public VirtualGridRowElement RowElement { get; set; }

Property Value

VirtualGridRowElement

RowIndex

Gets the index of the row.

Declaration

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

Property Value

int

RowType

Gets or sets the type of the row.

Declaration

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

Property Value

Type

ViewInfo

Gets the view info of the row.

Declaration

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

Property Value

VirtualGridViewInfo