BoundField.InitializeCell 方法

定义

将指定的 TableCell 对象初始化为指定的行状态。

public:
 override void InitializeCell(System::Web::UI::WebControls::DataControlFieldCell ^ cell, System::Web::UI::WebControls::DataControlCellType cellType, System::Web::UI::WebControls::DataControlRowState rowState, int rowIndex);
public override void InitializeCell (System.Web.UI.WebControls.DataControlFieldCell cell, System.Web.UI.WebControls.DataControlCellType cellType, System.Web.UI.WebControls.DataControlRowState rowState, int rowIndex);
override this.InitializeCell : System.Web.UI.WebControls.DataControlFieldCell * System.Web.UI.WebControls.DataControlCellType * System.Web.UI.WebControls.DataControlRowState * int -> unit
Public Overrides Sub InitializeCell (cell As DataControlFieldCell, cellType As DataControlCellType, rowState As DataControlRowState, rowIndex As Integer)

参数

cell
DataControlFieldCell

要初始化的 TableCell

rowIndex
Int32

行的索引(索引从零开始)。

注解

该方法 InitializeCellBoundField派生类型实现,用于向数据控件的对象添加文本和控件 TableCell ,该对象使用表来显示用户界面 (UI) 。 调用控件 CreateChildControls 的方法时,这些数据控件会逐行创建完整的表结构。 该方法 InitializeCellInitializeRow 数据控件的方法(如 DetailsViewGridView)调用。

编写使用 TableCell 对象通过数据或控件初始化表结构的单元格的自定义数据绑定控件时,调用此方法。 编写 BoundField-derived 类时实现此方法。

适用于

另请参阅