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

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

The MovedCurrentCellEventArgs type exposes the following members.

Constructors
  NameDescription
Public methodMovedCurrentCellEventArgs
Initializes a new MovedCurrentCellEventArgs object for a given cell.
Top
Properties
  NameDescription
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 MovedCurrentCell event handler, as well as to any delegates attached to the MovedCurrentCell event.
The MovedCurrentCell event is invoked when a new current cell is selected, but the change is not yet visible. This class supplies information about the event.
See Also