| property TextBKMode: TBKMode; |
| This property will define the current text background mode as either bkTransparent, where text will print on top of graphics without erasing the background, or as bkOpaque, where text will print on top of graphics after the background is cleared. |
| Not all printer drivers support opaque text, especially PCL5 laserjet drivers. For these printers try setting graphics mode to Raster instead of HP/GL2 inside the printer setup window and opaque text printing may work. |
| RvNDRWriter1.TextBKMode := bkOpaque; |
| RvNDRWriter1->TextBKMode = bkOpaque;
|
|