Called when the user starts edit a Cell.

Namespace: Dapfor.Net.Ui
Assembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)

Syntax

C#
protected virtual void OnCellBeginEdit(
	Cell cell,
	StartEditReason reason,
	UITypeEditor editor,
	Point location
)
Visual Basic
Protected Overridable Sub OnCellBeginEdit ( 
	cell As Cell,
	reason As StartEditReason,
	editor As UITypeEditor,
	location As Point
)
Visual C++
protected:
virtual void OnCellBeginEdit(
	Cell^ cell, 
	StartEditReason reason, 
	UITypeEditor^ editor, 
	Point location
)
F#
abstract OnCellBeginEdit : 
        cell : Cell * 
        reason : StartEditReason * 
        editor : UITypeEditor * 
        location : Point -> unit 
override OnCellBeginEdit : 
        cell : Cell * 
        reason : StartEditReason * 
        editor : UITypeEditor * 
        location : Point -> unit 

Parameters

cell
Type: Dapfor.Net.Ui..::..Cell
The cell.
reason
Type: Dapfor.Net.Editors..::..StartEditReason
The reason.
editor
Type: System.Drawing.Design..::..UITypeEditor
The editor.
location
Type: System.Drawing..::..Point
The location.

See Also