Initializes a new instance of a CellEditEventArgs.

Namespace:  C1.Phone.FlexGrid
Assembly:  C1.Phone.FlexGrid (in C1.Phone.FlexGrid.dll)

Syntax

C#
public CellEditEventArgs(
	GridPanel panel,
	CellRange range,
	FrameworkElement editor,
	bool cancelEdits
)
Visual Basic
Public Sub New ( _
	panel As GridPanel, _
	range As CellRange, _
	editor As FrameworkElement, _
	cancelEdits As Boolean _
)

Parameters

panel
Type: C1.Phone.FlexGrid..::..GridPanel
GridPanel that contains the range.
range
Type: C1.Phone.FlexGrid..::..CellRange
CellRange represented by this object.
editor
Type: System.Windows..::..FrameworkElement
FrameworkElement used to edit the cell value.
cancelEdits
Type: System..::..Boolean
Value that indicates whether the edits are being committed or canceled.

See Also