ImageField.InitializeCell 方法

定义

使用指定单元格类型、行状态和行索引初始化指定的 DataControlFieldCell 对象。

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

要初始化的 DataControlFieldCell

rowIndex
Int32

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

注解

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

在编写使用 DataControlFieldCell 对象使用数据或控件初始化表结构的单元格的自定义数据绑定控件时调用此方法。 在编写 ImageField派生类时实现此方法。

适用于

另请参阅