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

The GetStyleRowColEventArgs type exposes the following members.

Constructors
  NameDescription
Public methodGetStyleRowColEventArgs
Initializes a new GetStyleRowColEventArgs object for a given cell.
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 column index of the cell whose style is being obtained.
Public propertyModifyType
Gets or sets the type of operation being performed.
Public propertyRetrievalType
Gets or sets the type of retrieval being performed.
Public propertyRow
Gets or sets the row index of the cell whose style is being obtained.
Public propertyStored
Gets or sets whether the information has already been stored.
(Inherited from StoreEventArgs.)
Public propertyStyle
Gets or sets the style for the cell being queried.
Top
Remarks
These event arguments are supplied to any overridden GetStyleRowCol event handler, as well as to any delegates attached to the GetStyleRowCol event.
The GetStyleRowCol event is invoked each time a range of cells is redrawn. It obtains the style information for each cell in the range. You can also invoke the method from your application to retrieve the composed style for a given cell. This class supplies the row and column style, modify type, and retrieval type when the event is invoked.
See Also