DetailsView.CreateRow(Int32, DataControlRowType, DataControlRowState) Method

Definition

Creates a DetailsViewRow object using the specified item index, row type, and row state.

protected:
 virtual System::Web::UI::WebControls::DetailsViewRow ^ CreateRow(int rowIndex, System::Web::UI::WebControls::DataControlRowType rowType, System::Web::UI::WebControls::DataControlRowState rowState);
protected virtual System.Web.UI.WebControls.DetailsViewRow CreateRow (int rowIndex, System.Web.UI.WebControls.DataControlRowType rowType, System.Web.UI.WebControls.DataControlRowState rowState);
abstract member CreateRow : int * System.Web.UI.WebControls.DataControlRowType * System.Web.UI.WebControls.DataControlRowState -> System.Web.UI.WebControls.DetailsViewRow
override this.CreateRow : int * System.Web.UI.WebControls.DataControlRowType * System.Web.UI.WebControls.DataControlRowState -> System.Web.UI.WebControls.DetailsViewRow
Protected Overridable Function CreateRow (rowIndex As Integer, rowType As DataControlRowType, rowState As DataControlRowState) As DetailsViewRow

Parameters

rowIndex
Int32

The zero-based index of the data item to display.

rowType
DataControlRowType

One of the DataControlRowType values.

rowState
DataControlRowState

One of the DataControlRowState values.

Returns

A DetailsViewRow with the specified item index, row type, and row state.

Remarks

The CreateRow method is a helper method called by the DetailsView control to create a DetailsViewRow object.

Notes to Inheritors

When extending the DetailsView class, you can override this method to return a DetailsViewRow object with custom settings.

Applies to

See also