Fills the specified System.Collections.Specialized.IOrderedDictionary object with the values from the specified System.Web.UI.WebControls.DataControlFieldCell object.
- dictionary
- An System.Collections.Specialized.IOrderedDictionary used to store the values of the specified cell.
- cell
- The System.Web.UI.WebControls.DataControlFieldCell that contains the values to retrieve.
- rowState
- One of the System.Web.UI.WebControls.DataControlRowState values.
- includeReadOnly
- The value true includes only the values of read-only fields; otherwise, false.
The AutoGeneratedField.ExtractValuesFromCell(System.Collections.Specialized.IOrderedDictionary, DataControlFieldCell, DataControlRowState, bool) method is a helper method used to retrieve the values of the fields from the specified System.Web.UI.WebControls.DataControlFieldCell object in an System.Web.UI.WebControls.AutoGeneratedField object.
This method is primarily used by control developers.
This method does not have a return value. Instead, the field values are returned by reference through the System.Collections.Specialized.IOrderedDictionary object passed in for the dictionary parameter. After the method has been called, iterate through the System.Collections.Specialized.IOrderedDictionary object to access the field values.
To include the read-only field values in the System.Web.UI.WebControls.DataControlFieldCell object, pass in true for the includeReadOnly parameter.