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

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

The StartEditingEventArgs type exposes the following members.

Constructors
  NameDescription
Public methodStartEditingEventArgs
Initializes a new StartEditingEventArgs object for a given cell. location.
Top
Properties
  NameDescription
Public propertyCanStart
Gets or sets whether whether or not the user can start editing the contents of the cell.
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 StartEditing event handler, as well as to any delegates attached to the StartEditing event.
The StartEditing event is invoked when the user presses a key or the mouse on the current cell.
See Also