ButtonField.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 创建由属性指定的 ButtonType 按钮类型,并将其添加到 Controls 对象的集合 DataControlFieldCell 中。 控件 CommandArgument 的属性 Button 设置为 rowIndex
。