— 8 —
ESC SP n
[Function] Setting the right space amount of the character
[Code] <1B>H<20>H<n>
[Range] {0 =< n =< 20(Hex)}
[Outline] The rightward space amount is set in dot unit (1/203 inch unit).
[Caution] The rightward space amount in doublewide mode is made double of the set volume.
[Default] n = 0
[Sample Program]
PRINT #1, CHR$ (&H1B) + “ “ + CHR$ (0);
PRINT #1, “AAAAA” + CHR$ (&HA);
PRINT #1, CHR$ (&H1B) + “ “ + CHR$ (1);
PRINT #1, “AAAAA” + CHR$ (&HA);
PRINT #1, CHR$ (&H1B) + “ “ + CHR$ (12);
PRINT #1, “AAAAA” + CHR$ (&HA);
[Print Results]
AAAAA ← 0-dot space
A A A A A ← 1-dot space
A A A A A ← 12-dot space