GridView.ExtractRowValues Method
Assembly: System.Web (in system.web.dll)
protected: virtual void ExtractRowValues ( IOrderedDictionary^ fieldValues, GridViewRow^ row, bool includeReadOnlyFields, bool includePrimaryKey )
protected void ExtractRowValues ( IOrderedDictionary fieldValues, GridViewRow row, boolean includeReadOnlyFields, boolean includePrimaryKey )
protected function ExtractRowValues ( fieldValues : IOrderedDictionary, row : GridViewRow, includeReadOnlyFields : boolean, includePrimaryKey : boolean )
Parameters
- fieldValues
An IOrderedDictionary used to store the field values.
- row
The GridViewRow from which to retrieve the field values.
- includeReadOnlyFields
true to include read-only fields; otherwise, false.
- includePrimaryKey
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.Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.