GS H n
[Function] | Selecting of Printing Position of HRI Code | ||||
[Code] | <1D>H<48>H<n> |
|
| ||
[Range] | {0 ≤ n ≤ 3} Data is described in Hex code. | ||||
[Outline] | Selecting printing position of HRI code in printing bar codes. | ||||
| • "n" means the followings. | ||||
|
|
|
|
|
|
|
| n (Hex) |
| Printing Position |
|
|
| 0 |
| No printing |
|
|
| 1 |
| Above the bar code |
|
|
| 2 |
| Below the bar code |
|
|
| 3 |
| Both above and below the bar code |
|
| The HRI code refers to the bar | ||||
[Caution] | The HRI code is printed in the font selected with GS f. | ||||
| Specify before the GS k command. | ||||
[Defult] | • The initial value of n is "0". | ||||
[See Also] | GS f |
|
| ||
[Sample Program] |
|
|
| [Print Results] |
LPRINT CHR$ (&H1B) + "3" + CHR$ (5) ;
LPRINT CHR$ (&H1D) + "h" + CHR$ (50) ;
LPRINT CHR$ (&H1D) + "H" + CHR$ (0) ;
GOSUB BC
LPRINT CHR$ (&H1D) + "H" + CHR$ (1) ;
GOSUB BC
LPRINT CHR$ (&H1D) + "H" + CHR$ (2) ;
GOSUB BC
LPRINT CHR$ (&H1D) + "H" + CHR$ (3) ;
GOSUB BC
END
BC :
LPRINT CHR$ (&H1D) + "k" ;
LPRINT CHR$ (4) ;
LPRINT "12" + CHR$ (0) ;
LPRINT CHR$ (&HA) ;
RETURN
74 | CITIZEN |