- 141 -
2.2.12 Bar Code Commands
GS H n
CT-S280 CT-S300 CT-S2000 CT-S4000 BD2-2220 PMUseries
Supportmodel
CT-S281
CT-S310 CT-S801/851 CT-S601/651 CT-P29x series CT-S310II
[Function] Selecting ofprinting position ofHRIcharacters
[Code] <1D>H<48>H<n>
[Range] 0≤n≤3,48≤n≤51
[Outline] [The specification which is commontothemodel]
•Selecting printing positionof HRI characters in printingbar codes.
•“n”means thefollowings.
n Printing Position
0,48
Noprinting
1,49
Above the barcode
2,50
Below the barcode
3,51
Both above andbelow thebar code
TheHRIcharacters refer tothe bar code-turned characters sothat you canread them.
[Default] n=0
[See Also] GS f, GS k
[Sample Program] [PrintResults]
LPRINTCHR$(&H1B);”3”; CHR$(5);
LPRINTCHR$(&H1D);”h”; CHR$(50);
LPRINTCHR$(&H1D);”H”; CHR$(0);
GOSUB BC
LPRINTCHR$(&H1D);”H”; CHR$(1);
GOSUB BC
LPRINTCHR$(&H1D);”H”; CHR$(2);
GOSUB BC
LPRINTCHR$(&H1D);”H”; CHR$(3);
GOSUB BC
END
BC:
LPRINTCHR$(&H1D);”k”;
LPRINTCHR$(4);
LPRINT“12”; CHR$(0);
LPRINTCHR$(&HA);
RETURN