You are reading help file online using chmlib.com
|
Rave Reports Developer Reference TBaseReport. PrintXY (TBaseReport) method |
Top Previous Next |
Declaration procedure PrintXY(X,Y: double; Text: string);
Category
Description This method will print the string, Text, at the location specified by the point (X,Y).
NOTE: The Y position will determine the location of the baseline of the printed text.
See also TBaseReport Class, All other print functions, GotoXY
Example (Delphi) RvNDRWriter1.PrintXY( 1.0, 2.0, 'Text above (1.0, 2.0)');
Example (C++Builder) RvNDRWriter1->PrintXY( 1.0, 2.0, "Text above (1.0, 2.0)"); |
You are reading help file online using chmlib.com
|