Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The Location parameter sets the starting position. If the Font parameter is not specified, then the font is set to the current font from the FONT message. Use the Font parameter to print a specific font. This is useful when printing the TEXTXY on every page with the same font, because the font that is set with thethe FONT message may change during printing. The Repeat parameter is used to repeat the text on every page.

See also

FONTTEXTTEXTBOXTEXTCOL, Set_Printer messages. Also, Using Graphics.

Example

...

Code Block
The following example shows how to use the TEXTXY message to print text on the page.
declare function Set_Printer
stat = Set_Printer("INIT") ;* Start printing
for i = 1 to 5
text = "The X pos = ":i: " The Y pos = ":i
stat = Set_Printer("TEXTXY", text, i:@fm:i) ;* Prints at a diagonal
next i
stat = Set_Printer("TERM") ;* End printing