Click or drag to resize
CancelEditingEventArgs Class
Supplies event data for the CancelEditing event of the class GridControl.
Inheritance Hierarchy

Namespace: Stingray.Grid
Assembly: Stingray.GridControl (in Stingray.GridControl.dll) Version: 14.0.0.0
Syntax
public class CancelEditingEventArgs : CellEventArgs

The CancelEditingEventArgs type exposes the following members.

Constructors
  NameDescription
Public methodCancelEditingEventArgs
Initializes a new CancelEditingEventArgs object for a given cell.
Top
Properties
  NameDescription
Public propertyCanCancel
Internal
Public propertyCol
Gets or sets the column index of the cell.
(Inherited from CellEventArgs.)
Public propertyRow
Gets or sets the row index of the cell.
(Inherited from CellEventArgs.)
Top
Remarks
These event arguments are supplied to any overridden CancelEditing event handler, as well as to any delegates attached to the CancelEditing event.
The CancelEditing event is invoked when the user presses the ESC key on the current cell. This class supplies the row and column coordinates of the cell whose editing has been cancelled.
See Also