rText

Top  Previous  Next
RText( line, column, string, angle ) => 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.

 

Examples :        GraPdf:rText( 15, 15, “normal”, 0)

GraPdf:rText( 15, 25, “90 degrees”, 90)

GraPdf:rText( 15, 25, “180 degrees”, 180)

GraPdf:rText( 15, 25, “270 degrees”, 270)

 

IMAGE.1