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

The StoreMoveColsEventArgs type exposes the following members.

Constructors
  NameDescription
Public methodStoreMoveColsEventArgs
Initializes a new StoreMoveColsEventArgs object.
Top
Properties
  NameDescription
Public propertyCanStore
Gets or sets whether the data can be stored to the grid.
(Inherited from StoreEventArgs.)
Public propertyDestinationCol
Gets or sets the destination column index, where the columns are moved to.
Public propertyFromCol
Gets or sets the starting column index of the range of columns to move.
Public propertyProcessed
Gets or sets the processed flag.
Public propertyStored
Gets or sets whether the information has already been stored.
(Inherited from StoreEventArgs.)
Public propertyToCol
Gets or sets the ending column index of the range of columns to move.
Top
Remarks
These event arguments are supplied to any overridden StoreMoveCols event handler, as well as to any delegates attached to the StoreMoveCols event.
The StoreMoveCols event is invoked when columns are moved within the grid.
See Also