Click or drag to resize
CellControlOnEndEditing Method
Raises the EndEditing event.

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

Parameters

e
Type: Stingray.GridEndEditingEventArgs
The event data.

Return Value

Type: Boolean
true if the event data indicates that the action is valid; false otherwise.
Remarks
This method is invoked when the user confirms the cell's data and they are valid. You can indicate whether or not the data are accepted via the event arguments. The following steps show the default processing for this event:
  • The EndEditing event is raised, and delegates are invoked. You can indicate whether or not the data are accepted.
  • The EndEditing event is raised. You can again indicate whether or not the data are accepted.
  • If the data are accepted, editing ends for the cell.
You can monitor all controls via EndEditing, or you can attach a delegate to the specific CellControl that you want to monitor.
See Also