GridViewRow(Int32, Int32, DataControlRowType, DataControlRowState) Constructor

Definition

Initializes a new instance of the GridViewRow class.

public:
 GridViewRow(int rowIndex, int dataItemIndex, System::Web::UI::WebControls::DataControlRowType rowType, System::Web::UI::WebControls::DataControlRowState rowState);
public GridViewRow (int rowIndex, int dataItemIndex, System.Web.UI.WebControls.DataControlRowType rowType, System.Web.UI.WebControls.DataControlRowState rowState);
new System.Web.UI.WebControls.GridViewRow : int * int * System.Web.UI.WebControls.DataControlRowType * System.Web.UI.WebControls.DataControlRowState -> System.Web.UI.WebControls.GridViewRow
Public Sub New (rowIndex As Integer, dataItemIndex As Integer, rowType As DataControlRowType, rowState As DataControlRowState)

Parameters

rowIndex
Int32

The index of the GridViewRow object in the Rows collection of a GridView control.

dataItemIndex
Int32

The index of the DataItem in the underlying DataSet.

rowType
DataControlRowType

One of the DataControlRowType enumeration values.

rowState
DataControlRowState

A bitwise combination of the DataControlRowState enumeration values.

Remarks

Use this constructor to initialize a new instance of a GridViewRow object.

The following table shows initial property values for an instance of GridViewRow.

Property Initial Value
DataItemIndex The value of the dataItemIndex parameter.
RowIndex The value of the rowIndex parameter.
RowState The value of the rowState parameter.
RowType The value of the rowType parameter.

Applies to

See also