CBM-253 User’s Manual
82
CITIZEN
GS w n
[Name] Selection of bar code horizontal size (enlargement rate)
[Code] <1D>H <77>H <n>
[Defined range] 2 ≤ n ≤ 4
[Function] Selects the bar code horizontal size.
n indicates the number of dots of the fine element width.
[Initial value] n = 3
[Program example]
LPRINT CHR$(&H1D) + "h" + CHR$ (30) ;
LPRINT CHR$(&H1D) + "w" + CHR$(2) ;
GOSUB BC
LPRINT CHR$(&H1D) + "h" + CHR$ (50) ;
LPRINT CHR$(&H1D) + "w" + CHR$ (3) ;
GOSUB BC
LPRINT CHR$(&H1D) + "h" + CHR$(80) ;
LPRINT CHR$(&H1D) + "w" + CHR$(4) ;
GOSUB BC
END
BC :
LPRINT CHR$(&H1D) + "k" : LPRINT CHR$ (4) ;
LPRINT "12" + CHR$(0) ;
RETURN
[Printing result]