Programming instructions
Intermec Fingerprint v7.61 – Programmer’s Reference Manual Ed. 774
Chapter 2 Program Instructions
DIR, cont.
Remarks, cont.
 Lines:            Boxes: 
Examples
 Printing a label with one line of text and drawing a line beneath the text:
  10   PRPOS 30,300
  20   DIR 1
  30   ALIGN 4
  40   FONT "Swiss 721 BT",18
  50   PRTXT "TEXT PRINTING"
  60   PRPOS 30,280 
  70   PRLINE 555,10
  80   PRINTFEED 
  RUN
 Printing  the  same  information  vertically  necessitates  new  positioning  to 
avoid Error 1003, “Field out of label."
  10   PRPOS 300,30  (new position)
  20   DIR 4   (new direction)
  30   ALIGN 4
  40   FONT "Swiss 721 BT",18  
  50   PRTXT "TEXT PRINTING"
  60   PRPOS 320,30  (new position)
  70   PRLINE 555,10
  80   PRINTFEED 
  RUN










