ImageField.InitializeCell 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
使用指定单元格类型、行状态和行索引初始化指定的 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。
- cellType
- DataControlCellType
DataControlCellType 值之一。
- rowState
- DataControlRowState
DataControlRowState 值之一。
- rowIndex
- Int32
行的索引(索引从零开始)。
注解
方法 InitializeCell 由 ImageField派生类型实现,以向数据控件的对象添加文本和控件 DataControlFieldCell ,该对象使用表显示用户界面 (UI) 。 当调用控件的 方法时, CreateChildControls
这些数据控件会逐行创建完整的表结构。 方法InitializeCell由InitializeRow
数据控件(如 和 GridView)DetailsView的 方法调用。
在编写使用 DataControlFieldCell 对象使用数据或控件初始化表结构的单元格的自定义数据绑定控件时调用此方法。 在编写 ImageField派生类时实现此方法。