Programming instructions

Intermec Fingerprint v7.61 Programmers Reference Manual Ed. 7 91
Chapter 2 Program Instructions
FONTNAME$
Field of Application
Function returning the names of the fonts stored in the printers
memory.
Syntax FONTNAME$(<nexp>)
<nexp> the result of the expression should be either false or
true, where...
False (0) indicates rst font.
True (0) indicates next font.
Remarks
FONTNAME$(0) produces the rst name in the memory.
FONTNAME$(0) produces next name. Can be repeated as long as
there are any fontnames left.
Example
Use a program like this to list all fontnames:
10 A$ = FONTNAME$ (0)
20 IF A$ = "" THEN END
30 PRINT A$
40 A$ = FONTNAME$ (-1)
50 GOTO 20
RUN
yields for example:
-UPC11.1
-UPC11.2
-UPC21.1
-UPC21.2
-UPC31.1
-UPC31.2
-UPC51.1
-UPC51.2
Century Schoolbook BT
Dutch 801 Bold BT
Dutch 801 Roman BT
Futura Light BT
Letter Gothic 12 Pitch BT
MS030RMN
MS030RMN.1
MS030RMN.2
MS050RMN
MS050RMN.1
MS050RMN.2
MS060BMN
MS060BMN.1
MS060BMN.2
Monospace 821 BT
Monospace 821 Bold BT
OB035RM1
etc, etc.