Click or drag to resize
CellControlOnModifyCell Method
Raises the ModifyCell event.

Namespace: Stingray.Grid
Assembly: Stingray.GridControl (in Stingray.GridControl.dll) Version: 14.0.0.0
Syntax
protected virtual void OnModifyCell(
	ModifyCellEventArgs e
)

Parameters

e
Type: Stingray.GridModifyCellEventArgs
The event data.
Remarks
This method is invoked when the user modifies the cell's contents. The follwing steps show the default processing for this event:
  • The ModifyCell event is raised, and delegates are invoked.
  • The ModifyCell event is raised for the cell.
You can monitor all controls via ModifyCell, or you can attach a delegate to the specific CellControl that you want to monitor.
See Also