This documentation is archived and is not being maintained.
FormView::CreateRow Method
Visual Studio 2010
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::FormViewRowA 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 InheritorsWhen extending the FormView class, you can override this method to return a FormViewRow object with custom settings.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: