ComponentOne GridView for ASP.NET WebForms
C1.Web.Wijmo.Controls.4 Assembly / C1.Web.Wijmo.Controls.C1GridView Namespace / C1BaseField Class / ExtractValuesFromCell Method
A System.Collections.Specialized.IOrderedDictionary used to store the values of the specified cell.
The C1GridViewCell object that contains the values to retrieve.
One of the C1GridViewRowState values.
True to include the values of read-only fields; otherwise, false.

In This Topic
    ExtractValuesFromCell Method (C1BaseField)
    In This Topic
    Fills the specified System.Collections.Specialized.IOrderedDictionary object with values from the specified C1GridViewCell object.
    Syntax
    'Declaration
     
    Public Overridable Sub ExtractValuesFromCell( _
       ByVal dictionary As System.Collections.Specialized.IOrderedDictionary, _
       ByVal cell As C1GridViewCell, _
       ByVal rowState As C1GridViewRowState, _
       ByVal includeReadOnly As System.Boolean _
    ) 
    public virtual void ExtractValuesFromCell( 
       System.Collections.Specialized.IOrderedDictionary dictionary,
       C1GridViewCell cell,
       C1GridViewRowState rowState,
       System.bool includeReadOnly
    )

    Parameters

    dictionary
    A System.Collections.Specialized.IOrderedDictionary used to store the values of the specified cell.
    cell
    The C1GridViewCell object that contains the values to retrieve.
    rowState
    One of the C1GridViewRowState values.
    includeReadOnly
    True to include the values of read-only fields; otherwise, false.
    See Also