CBM-253 User’s Manual
42
CITIZEN
ESC SP n
[Name]
Setting of the amount of space to the right of the character
[Code]
<1B>H <20>H <n>
[Defined range]
0
≤
n
≤
32
[Function]
Sets the amount of space to the right of the character in dot units (1/203 inch units).
[Items requiring caution]
In double wide mode, the amount of space to the right of the character will become two
times the set amount.
[initial value]
n = 0
[Program example]
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) ;
[Printing result]