Called when GridControl looks for a new Cell to edit.

Namespace: Dapfor.Wpf.Controls
Assembly: Dapfor.Wpf (in Dapfor.Wpf.dll) Version: 4.1.0.26317 (4.1.0.26317)

Syntax

C#
protected virtual Cell OnNextEditableCell(
	Cell editingCell,
	Cell newEditableCell
)
Visual Basic
Protected Overridable Function OnNextEditableCell ( 
	editingCell As Cell,
	newEditableCell As Cell
) As Cell
Visual C++
protected:
virtual Cell^ OnNextEditableCell(
	Cell^ editingCell, 
	Cell^ newEditableCell
)
F#
abstract OnNextEditableCell : 
        editingCell : Cell * 
        newEditableCell : Cell -> Cell 
override OnNextEditableCell : 
        editingCell : Cell * 
        newEditableCell : Cell -> Cell 

Parameters

editingCell
Type: Dapfor.Wpf.Controls..::..Cell
The currently editing cell.
newEditableCell
Type: Dapfor.Wpf.Controls..::..Cell
A new Cell to edit.

Return Value

Type: Cell
A Cell to edit.

See Also