DetailsView.ExtractRowValues(IOrderedDictionary, Boolean, Boolean) 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.
Retrieves the values of each field displayed and stores them in the specified IOrderedDictionary object.
protected:
virtual void ExtractRowValues(System::Collections::Specialized::IOrderedDictionary ^ fieldValues, bool includeReadOnlyFields, bool includeKeys);
protected virtual void ExtractRowValues (System.Collections.Specialized.IOrderedDictionary fieldValues, bool includeReadOnlyFields, bool includeKeys);
abstract member ExtractRowValues : System.Collections.Specialized.IOrderedDictionary * bool * bool -> unit
override this.ExtractRowValues : System.Collections.Specialized.IOrderedDictionary * bool * bool -> unit
Protected Overridable Sub ExtractRowValues (fieldValues As IOrderedDictionary, includeReadOnlyFields As Boolean, includeKeys As Boolean)
Parameters
- fieldValues
- IOrderedDictionary
An IOrderedDictionary used to store the field values.
- includeReadOnlyFields
- Boolean
true
to include read-only fields; otherwise, false
.
- includeKeys
- Boolean
true
to include the primary key field or fields; otherwise, false
.
Remarks
The ExtractRowValues method is a helper method called by the DetailsView control to retrieve the values of each field. The values can them be used for data source operations. You can specify whether the extracted values include read-only fields and key fields by using the includeReadOnlyFields
and includePrimaryKey
parameters, respectively.
Notes to Inheritors
When extending the DetailsView class, you can override this method to create your own routine to retrieve the field values.