— 26 —
ESC G n
[Function] Specifying/canceling Double Printing
[Code] <1B>H<47>H<n>
[Range] {0 =< n =< FF(Hex)}
[Outline] Specifying/canceling the double printing.
• “n” is valid only for the lowest bit (n0).
• Control by n is shown as follows.
• This is effective to font A (12 × 24 dots)
[Caution] • The print result of Double printing and highlight character printing is completely
same.
[Default] n = 0
[See Also] ESC E
[Sample Program]
PRINT #1, CHR$ (&H1B) + “G” + CHR$ (0);
PRINT #1, “AAABBB” + CHR$ (&HA);
PRINT #1, CHR$ (&H1B) + “G” + CHR$ (1);
PRINT #1, “AAABBB” + CHR$ (&HA);
[Print Results]
A A A B B B ← Highlighting canceled
A A A B B B ← Highlighting canceled
n (Hex) Type
0 Canceling double printing.
1 Specifying double printing.