FormView::CreateRow Method (Int32, DataControlRowType, DataControlRowState)
.NET Framework (current version)
Creates a FormViewRow object using the specified item index, row type, and row state.
Assembly: System.Web (in System.Web.dll)
protected: virtual FormViewRow^ CreateRow( int itemIndex, DataControlRowType rowType, DataControlRowState rowState )
Parameters
- itemIndex
-
Type:
System::Int32
The zero-based index of the data item to display.
- rowType
-
Type:
System.Web.UI.WebControls::DataControlRowType
One of the DataControlRowType enumeration values.
- rowState
-
Type:
System.Web.UI.WebControls::DataControlRowState
A bitwise combination of the DataControlRowState enumeration values.
Return Value
Type: System.Web.UI.WebControls::FormViewRow^A FormViewRow with the specified item index, row type, and row state.
The CreateRow method is a helper method called by the FormView control to create a FormViewRow object used to represent a row within the control.
Notes to Inheritors:
When extending the FormView class, you can override this method to return a FormViewRow object with custom settings.
.NET Framework
Available since 2.0
Available since 2.0
Show: