Click or drag to resize
CellControlOnStartEditing Method
Raises the StartEditing event.

Namespace: Stingray.Grid
Assembly: Stingray.GridControl (in Stingray.GridControl.dll) Version: 14.0.0.0
Syntax
protected virtual bool OnStartEditing(
	StartEditingEventArgs e
)

Parameters

e
Type: Stingray.GridStartEditingEventArgs
The event data.

Return Value

Type: Boolean
true if the event data allows to start the edition; false otherwise.
Remarks
This method is invoked when the user starts editing the cell by pressing a key or clicking into the text. The following processing occurs with this event:
  • Your delegates are invoked, and you can specify whether or not editing can start.
  • The StartEditing event is raised. You can again specify whether editing can start.
  • If editing can start, the .NET control receives input focus.
  • The control is marked as modified (for your convenience).
  • The ModifyCell event is raised.
You can monitor all controls via StartEditing, or you can attach a delegate to the specific CellControl that you want to monitor.
See Also