Fills the specified IOrderedDictionary object with values from the specified TableCell object.

Namespace:  C1.Web.UI.Controls.C1GridView
Assembly:  C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)

Syntax

C#
public override void ExtractValuesFromCell(
	TableCell cell,
	IOrderedDictionary values,
	C1GridViewRowType rowType,
	C1GridViewRowState rowState,
	bool includeReadonly
)
Visual Basic
Public Overrides Sub ExtractValuesFromCell ( _
	cell As TableCell, _
	values As IOrderedDictionary, _
	rowType As C1GridViewRowType, _
	rowState As C1GridViewRowState, _
	includeReadonly As Boolean _
)

Parameters

cell
Type: System.Web.UI.WebControls..::..TableCell
The TableCell object that contains the values to retrieve.
values
Type: System.Collections.Specialized..::..IOrderedDictionary
A IOrderedDictionary used to store the values of the specified cell.
rowType
Type: C1.Web.UI.Controls.C1GridView..::..C1GridViewRowType
One of the C1GridViewRowType values.
rowState
Type: C1.Web.UI.Controls.C1GridView..::..C1GridViewRowState
One of the C1GridViewRowState values.
includeReadonly
Type: System..::..Boolean
True to include the values of read-only fields; otherwise, false.

See Also