Programming instructions
Intermec Fingerprint v7.61 – Programmer’s Reference Manual Ed. 722
Chapter 2 Program Instructions
BARFONT ON/OFF (BF ON/OFF)
Field of Application
Statement enabling or disabling the printing of bar code interpreta-
tion.
Syntax BARFONT|BF
↔
ON|OFF
Default: BARFONT OFF
Reset to default by: PRINTFEED execution
Remarks
Usually, you start your program by selecting a suitable bar code interpretation
font, see BARFONT. Then use BARFONT ON and BARFONT OFF
statements to control whether to print the interpretation or not, depending
on application.
BARFONT ON can be replaced by a BARFONT statement appended by a
trailing ON, see BARFONT statement.
Example
Programming a Code 39 bar code, selecting a barfont for each direction
and enabling the printing of the bar code interpretation. Compare with the
example for BARFONT statement:
10 PRPOS 30,400
20 DIR 1
30 ALIGN 7
40 BARSET "CODE39",2,1,3,120
50 BARFONT "Swiss 721 BT",10,8,5,1,1
60 BARFONT ON
70 PRBAR "ABC"
80 PRINTFEED
90 END