Initializes a new instance of a CellEditEventArgs.

Namespace:  C1.Silverlight.FlexGrid
Assembly:  C1.Silverlight.FlexGrid.4 (in C1.Silverlight.FlexGrid.4.dll)

Syntax

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

Parameters

panel
Type: C1.Silverlight.FlexGrid..::..GridPanel
GridPanel that contains the range.
rng
Type: C1.Silverlight.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