Click or drag to resize
StoreCopyCellsEventArgs Class
Supplies data for the StoreCopyCells 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 StoreCopyCellsEventArgs : StoreEventArgs

The StoreCopyCellsEventArgs type exposes the following members.

Constructors
  NameDescription
Public methodStoreCopyCellsEventArgs
Initializes a new StoreCopyCellsEventArgs object. location.
Top
Properties
  NameDescription
Public propertyCanStore
Gets or sets whether the data can be stored to the grid.
(Inherited from StoreEventArgs.)
Public propertyCol
Gets or sets the destination cell column index.
Public propertyRange
Gets or sets the range of cells to be copied.
Public propertyRow
Gets or sets the destination cell row index.
Public propertyStored
Gets or sets whether the information has already been stored.
(Inherited from StoreEventArgs.)
Top
Remarks
These event arguments are supplied to any overridden StoreCopyCells event handler, as well as to any delegates attached to the StoreCopyCells event.
The StoreCopyCells event is invoked when cells are copied (using the CopyCells(Range) method) from one location to another in the grid.
See Also