GridView::ExtractRowValues Method (IOrderedDictionary^, GridViewRow^, Boolean, Boolean)
Retrieves the values of each field declared within the specified row and stores them in the specified IOrderedDictionary object.
Assembly: System.Web (in System.Web.dll)
protected: virtual void ExtractRowValues( IOrderedDictionary^ fieldValues, GridViewRow^ row, bool includeReadOnlyFields, bool includePrimaryKey )
Parameters
- fieldValues
-
Type:
System.Collections.Specialized::IOrderedDictionary^
An IOrderedDictionary used to store the field values.
- row
-
Type:
System.Web.UI.WebControls::GridViewRow^
The GridViewRow from which to retrieve the field values.
- includeReadOnlyFields
-
Type:
System::Boolean
true to include read-only fields; otherwise, false.
- includePrimaryKey
-
Type:
System::Boolean
true to include the primary key field or fields; otherwise, false.
The ExtractRowValues method is a helper method called by the GridView control to retrieve the values of each field declared within the row specified by the row parameter. 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 GridView class, you can override this method to create your own routine to retrieve the field values.
Available since 2.0