|
OnCellDraw |
Top Previous Next |
|
This event is triggered when a cell in a table is drawn.
This event is now deprecated and it is recommended that the OnCellDrawEx event is used in its place.
Syntax
Member of eDocEngineX.gtPDFEngineX
Parameters
Row [in] Specifies the row number of the cell.
Column [in] Specifies the column number of the cell.
PenColor [out] Specifies the color of the pen.
PenStyle [out] Specifies the style of the pen.
PenWidth [out] Specifies the width of the pen.
BrushColor [out] Specifies the color of the brush.
BrushStyle [out] Specifies the style of the brush.
Font [out] Specifies the font properties of the text.
FrameIsLeft, FrameIsTop, FrameIsRight, FrameIsBottom [out] Boolean value which specifies whether the inside border of the cell should be drawn or not.
FrameLeft, FrameTop, FrameRight, FrameBottom [out] The respective internal margin of the cell.
Remarks
The OnCellDraw event allows you to change the properties of a table's cell before drawing. This event is triggered just before drawing the cell specified by Row and Column. The user can change the Pen and Brush properties corresponding to a particular cell by providing handler to this event.
See Also
|