Programming instructions

Intermec Fingerprint v7.61 Programmers Reference Manual Ed. 7 23
Chapter 2 Program Instructions
BARHEIGHT (BH)
Field of Application
Statement specifying the height of a bar code.
Syntax BARHEIGHT|BH<nexp>
<nexp> is the height of the bars in the bar code expressed in
number of dots.
Default value: 100 dots.
Reset to default by: PRINTFEED execution.
Remarks
The barheight speci es the height of the bars, that make up the code. In bar
codes consisting of several elements on top of each other, for example Code
16K, the barheight speci es the height of one element. The height is not
affected by BARMAG statements.
BARHEIGHT can be replaced by a parameter in the BARSET statement.
Example
Programming a Code 39 bar code, selecting a barfont for all directions and
enabling the printing of the bar code interpretation:
10 PRPOS 30,400
20 DIR 1
30 ALIGN 7
40 BARTYPE "CODE39"
50 BARRATIO 2,1
60 BARHEIGHT 120
70 BARMAG 3
80 BARFONT "Swiss 721 BT"ON
90 PRBAR "ABC"
100 PRINTFEED
A more compact method is illustrated by the example for BARSET
statement.