TemplateField.ExtractValuesFromCell 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.
Extracts the value of the data control fields as specified by one or more two-way binding statements (DataBind
) from the current table cell and adds the values to the specified IOrderedDictionary collection.
public:
override void ExtractValuesFromCell(System::Collections::Specialized::IOrderedDictionary ^ dictionary, System::Web::UI::WebControls::DataControlFieldCell ^ cell, System::Web::UI::WebControls::DataControlRowState rowState, bool includeReadOnly);
public override void ExtractValuesFromCell (System.Collections.Specialized.IOrderedDictionary dictionary, System.Web.UI.WebControls.DataControlFieldCell cell, System.Web.UI.WebControls.DataControlRowState rowState, bool includeReadOnly);
override this.ExtractValuesFromCell : System.Collections.Specialized.IOrderedDictionary * System.Web.UI.WebControls.DataControlFieldCell * System.Web.UI.WebControls.DataControlRowState * bool -> unit
Public Overrides Sub ExtractValuesFromCell (dictionary As IOrderedDictionary, cell As DataControlFieldCell, rowState As DataControlRowState, includeReadOnly As Boolean)
Parameters
- dictionary
- IOrderedDictionary
- cell
- DataControlFieldCell
A DataControlFieldCell that contains the text or controls of the TemplateField.
- rowState
- DataControlRowState
One of the DataControlRowState values.
- includeReadOnly
- Boolean
true
to indicate that the values of read-only fields are included in the dictionary
collection; otherwise, false
.
Remarks
The ExtractValuesFromCell method is implemented by types derived from DataControlField, such as TemplateField. This method is called to extract the values of two-way data-bound fields in the template to populate dictionaries to be passed to the data source for an update, insert, or delete operation. The field/value pair is stored in the dictionary collection that is passed to the method. The ExtractValuesFromCell method is called by the ExtractRowValues
method of data controls such as DetailsView and GridView.