Print Sample
  

Sample:

INIT PRINTSYS

SELECT DEFAULT PREVIEW

DEFINE FONT "F0" NAME "Courier New" SIZE 24

START DOC

FOR I := 1 TO 10

START PAGE

@ 10,10 SAY "Page:" + str(I) FONT "F0" TO PRINT

END PAGE

NEXT

END DOC

RELEASE PRINTSYS

Hints:

The best way to get the most similiar printout on various printers is to use SET UNITS MM, remembering to use margins large enough for all printers.

When setting units to rowcol, you must consider that the font is not mapped by different printer drivers exactly the same. Row height is measured using mapped printer DC font, so, it slightly differ on various printers.

Setting units mm, printout position is calculated using printer resolution in pixels-per-inch, so this method is more exact than using units rowcol.

graphic

graphic

graphic

Note: Print preview shows printable area (not whole paper area)