GridView.ExtractRowValues Method
Retrieves the values of each field declared within the specified row and stores them in the specified IOrderedDictionary object.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in System.Web.dll)
'Declaration Protected Overridable Sub ExtractRowValues ( _ fieldValues As IOrderedDictionary, _ row As GridViewRow, _ includeReadOnlyFields As Boolean, _ includePrimaryKey As Boolean _ )
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 InheritorsWhen extending the GridView class, you can override this method to create your own routine to retrieve the field values.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.