Operating instructions

— 50 —
ESC SP n
[Function]
[Code]
[Range]
[Outline]
Setting the right spacing of the character
<1B> H <20> H <n>
0 n 32
The rightward space amount is set in dot unit (1/203 inch
unit). In the initial value, it is n=0.
• The rightward space amount in double wide mode is made
double of the set volume.
• This command does not affect Kanji characters.
n = 0
LPRINT CHR$ (&H1B) ; " " ; CHR$ (0) ;
LPRINT "AAAAA" ; CHR$ (&HA) ;
LPRINT CHR$ (&H1B) ; " " ; CHR$ (1) ;
LPRINT "AAAAA" ; CHR$ (&HA) ;
LPRINT CHR$ (&H1B) ; " " ; CHR$ (12) ;
LPRINT "AAAAA" ; CHR$ (&HA)
END
[Caution]
[Default]
[Sample Program]
[Print Results] AAAAA
AAAAA
A A A A A
0-dot space
1-dot space
12-dot space
<
<
<