Star Micronics NP-IO Printer User Manual


 
!
73
Table 5-7
Big character commands
Function
Control code
Double-high enlarged print
(ESC) “h” CHR$(l)
Quad-high enlarged print (ESC) “h” CHR$(2)
Double-high lower-half enlarged
nrint
( ESC > “h,, CHR$.31
r- ----
Double-high upper-half enlarged
print
( ESC > “h,, CHR$(4J
Quad-high lower-half enlarged
mint
(ESC > “h” CHR$(5)
Quad-high upper-half enlarged
mint
(ESC) “h” CHR$(G)
r- ----
I
Cancel enlarged print
I( ESC > “h” CHR$(O)
Try this program to see the big characters.
10 Demo of BIG characters
20 FOR I=1 TO 6
30 LPRINT "THIS IS ";
40 LPRINT CHR$(27);"h";CHR$(I);
50 LPRINT "BIG";
60 LPRINT CHR$(27);"h";CHR$(O);
70 LPRINT " CHARACTER." : LPRINT
80 IF I=2 THEN LPRINT
90 NEXT I
100 END