 | DrawGridItemEventArgs Class |
Inheritance Hierarchy
Namespace: Stingray.GridAssembly: Stingray.GridControl (in Stingray.GridControl.dll) Version: [TAG_DECIMAL_VERSION]
Syntaxpublic class DrawGridItemEventArgs : EventArgs
Public Class DrawGridItemEventArgs
Inherits EventArgs
public ref class DrawGridItemEventArgs : public EventArgs
The DrawGridItemEventArgs type exposes the following members.
Constructors
Properties
| Name | Description |
---|
 | Col |
Gets or sets the column index of the cell being drawn.
|
 | Graphics |
Gets or sets the Graphics object that draws the item.
|
 | Row |
Gets or sets the row index of the cell being drawn.
|
 | Style |
Gets or sets the style of the cell being drawn.
|
 | WindowRect |
Gets or sets the bounding rectangle of the cell being drawn.
|
Top
Remarks
These event arguments are supplied to any overridden
DrawGridItem event handler, as well as to any delegates
attached to the
DrawGridItem event.
The
DrawGridItem event is invoked
as each cell in the grid is drawn. This class supplies the
row and column cell coordinates of the cell being drawn, as well
as the bounding rectangle in which the item is to be drawn.
See Also