/******************************************************** * Print Control V5 Syntax Reference - ftext example ********************************************************/ timesroman = 5; medium = 0; normal = 0; italic = 1; bold = 3; font( 5, 8, normal, italic); hor( 18, 10, 54, 0.1); vert( 20, 8, 18, 0.1, 2, 50); text( 45, 9, "c", "50mm"); font( 3, 12, normal); text( 20, 5, "r", "ftext(\"r\",70,14,50,\"string\");"); font( 5, 10, normal); ftext( "r", 20, 14, 50, "This is a string showing how text is formatted into a block and aligned to the right margin"); offset( 80, 0); font( 5, 8, normal, italic); hor( 18, 10, 54, 0.1); vert( 20, 8, 18, 0.1, 2, 50); text( 45, 9, "c", "50mm"); font( 3, 12, normal); text( 20, 5, "r", "ftext(\"j\",20,14,50,\"string\");"); font( 5, 10, normal); ftext( "j", 20, 14, 50, "This is a string showing how text is formatted into a block and aligned to the right margin");