GridView.CreateRow Method

Definition

Creates a row in the GridView control.

C#
protected virtual System.Web.UI.WebControls.GridViewRow CreateRow(int rowIndex, int dataSourceIndex, System.Web.UI.WebControls.DataControlRowType rowType, System.Web.UI.WebControls.DataControlRowState rowState);

Parameters

rowIndex
Int32

The index of the row to create.

dataSourceIndex
Int32

The index of the data source item to bind to the row.

rowType
DataControlRowType

One of the DataControlRowType values.

rowState
DataControlRowState

One of the DataControlRowState values.

Returns

A GridViewRow created using the specified parameters.

Remarks

The CreateRow method is used to create a row in the GridView control.

Note

This method is used primarily by control developers to extend the GridView control. A data-bound GridView control automatically generates the rows needed to display the target data.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also