ButtonField.InitializeCell Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes the specified DataControlFieldCell object to the specified row state.
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)
Parameters
- cell
- DataControlFieldCell
The DataControlFieldCell to initialize.
- cellType
- DataControlCellType
A DataControlCellType value that indicates the type of row (header, footer, or data).
- rowState
- DataControlRowState
One of the DataControlRowState values.
- rowIndex
- Int32
The zero-based index of the row.
Remarks
The InitializeCell method creates the button type that is specified by the ButtonType property and adds it to the Controls collection of the DataControlFieldCell object. The CommandArgument property of the Button control is set to rowIndex
.