Programming instructions
Intermec Fingerprint v7.61 – Programmer’s Reference Manual Ed. 728
Chapter 2 Program Instructions
BARTYPE (BT)
Field of Application
Statement specifying the type of bar code.
Syntax BARTYPE|BT<sexp>
<sexp> specifi es the type of bar code.
Allowed input: Valid bar type name.
Default value: "INT2OF5"
Reset to default by: PRINTFEED execution.
Remarks
The selected bar code type must exist in the printer’s memory and be entered
in the form of a string expression. If a bar code require dynamic downloading,
the downloading will be initiated when a BARTYPE or BARSET statement
is executed. Please refer to Chapter 5, “Bar Codes” later in this manual for
a list of the bar codes that are included in the Intermec Fingerprint fi rmware
and their respective designations.
BARTYPE 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.