You are reading help file online using chmlib.com
|
Rave Reports Developer Reference TBaseReport. PrintBitmap method |
Top Previous Next |
Declaration procedure PrintBitmap(X,Y: double; ScaleX, ScaleY: double; Bitmap: TBitmap);
Category
Description This method will draw Bitmap on the printer canvas at the point defined by (X,Y). The bitmap will be scaled by the factors ScaleX and ScaleY. (Example (Delphi) A scaling factor of 2 would draw each pixel in the bitmap as 2 pixels on the printer canvas.)
See also TBaseReport Class, TBaseReport Class, PrintBitmapRect
Example (Delphi) // Print MyBitmap in upper left corner four times its size RvNDRWriter1.PrintBitmap( 1.0, 1.0, 2.0, 2.0, MyBitmap );
Example (C++Builder) RvNDRWriter1->PrintBitmap( 1.0, 1.0, 2.0, 2.0, MyBitmap ); |
You are reading help file online using chmlib.com
|