GridView.CreateRow 方法

定义

GridView 控件中创建行。

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

参数

rowIndex
Int32

要创建的行的索引。

dataSourceIndex
Int32

要绑定到行的数据源项的索引。

rowType
DataControlRowType

DataControlRowType 值之一。

返回

使用指定参数创建的 GridViewRow

注解

方法 CreateRow 用于在 控件中创建 GridView 行。

注意

此方法主要由控件开发人员用于扩展 GridView 控件。 数据绑定 GridView 控件自动生成显示目标数据所需的行。

适用于

另请参阅