DetailsViewPagerRow(Int32, DataControlRowType, DataControlRowState) Constructor

Definition

Initializes a new instance of the DetailsViewPagerRow class.

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

Parameters

rowIndex
Int32

The index of the row in the Rows collection of the DetailsView control.

rowType
DataControlRowType

One of the DataControlRowType enumeration values.

rowState
DataControlRowState

One of the DataControlRowState enumeration values.

Remarks

The DetailsViewPagerRow constructor calls the base class constructor, DetailsViewRow, with the specified parameters. For a DetailsViewPagerRow control in a DetailsView control, the call is made with rowIndex equal to -1, rowType equal to Pager, and rowState equal to Normal.

Applies to

See also