rText |
-
RText( line, column, string, angle, lUTF ) => prints a string of text on the page, rotating to the specified angle, at line and column position that are calculated according to page size.
Line (numeric) : Vertical position of text according to coordinate system.
Column (numeric) : Horizontal position of text according to coordinate system.
String (character) : Text to be included in the document.
Angle (numeric) : Angle of rotation, ranging from 0 to 360, starting at the normal text position and rotating counter clockwise back to an horizontal position.
lUTF (logic) : indicates if the string is a normal ANSI text (false), or if it is an UNICODE text (true). (Default is false)
Examples : oPdf:rText( 15, 15, “normal”, 0)
oPdf:rText( 15, 25, “90 degrees”, 90)
oPdf:rText( 15, 25, “180 degrees”, 180)
oPdf:rText( 15, 25, “270 degrees”, 270)