Programming instructions
Intermec Fingerprint v7.61 – Programmer’s Reference Manual Ed. 7206
Chapter 2 Program Instructions
PRLINE (PL)
Field of Application
Statement for creating a line.
Syntax PRLINE|PL<nexp
1
>,<nexp
2
>
<nexp
1
> is the length of the line in dots (max. 6000).
<nexp
2
> is the line weight in dots (max. 6000).
Remarks
The line will be drawn from the insertion point and away according to the
nearest preceding DIR and ALIGN statements (that is the line runs in parallel
with any text printed in the selected direction).
A line can be ALIGNed left, right or center. The anchor points are situated
at the bottom of the line, which means that with an increasing line weight
(thickness), the line will the grow upward in relation to the selected direction.
In the illustration below, all lines are aligned left. Lines may cross (see
XORMODE ON/OFF statement).
Example
This example draws a 2.5 cm (1 inch) long and 10 dots thick line across the
media in a 12 dots/mm printer:
10 PRPOS 50,100
20 PRLINE 300,10
30 PRINTFEED
RUN