New to Telerik UI for WinFormsStart a free 30-day trial

Provides data for the CreateRowElement event.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

C#
public class VirtualGridCreateRowEventArgs

Inheritance: objectVirtualGridCreateRowEventArgs

Constructors

Initializes a new instance of the VirtualGridCreateRowEventArgs class.

C#
public VirtualGridCreateRowEventArgs(int rowIndex, Type rowType, VirtualGridViewInfo viewInfo)
Parameters:rowIndexint

Index of the row.

rowTypeType

Type of the row.

viewInfoVirtualGridViewInfo

The view info.

Properties

Gets or sets the row element.

C#
public VirtualGridRowElement RowElement { get; set; }

Gets the index of the row.

C#
public int RowIndex { get; }

Gets or sets the type of the row.

C#
public Type RowType { get; set; }

Gets the view info of the row.

C#
public VirtualGridViewInfo ViewInfo { get; }