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 | ← | |
| A A A A A | ← | |
| A A A A A | ← |
Ñ 8 Ñ