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