User`s manual
1 DATECS EP-50
48 49
User’s Manual
26. ESC I n
Specifying/cancelling italic printing (ESC I n)
[Code] [1Bh] + [49h] + n
[Range] {0 <= n <= FFh}
[Outline] Specifying/canceling the double printing.
• “n” is valid only for the lowest bit (n0).
• Control by n is shown as follows.
0 Canceling italic printing.
1 Specifying italic printing.
[Sample Program]
LPRINT CHR$(&H1B) + “I” + CHR$(0);
LPRINT “BBBBB”;
LPRINT CHR$(&H1B) + “I” + CHR$(1);
LPRINT “BBBBB”;
[Print Results]
BBBBBBBBBB
27. ESC J n
Printing and feeding paper n/203 inch
[Code] [1Bh] + [4Ah] + n
[Range] {0 <= n <= FFh}
[Outline] Prints data inside the print buffer and feeds paper by
n/203 inch. Since an actual mechanical pitch is 1/203 inch,
it is internally converted approximate to the value specified
with this command.
• Specified volume does not remain.
• The beginning of the line is to be considered as the next printing
start position.
• Initial value is not defined.
25. ESC G n
Specifying/canceling Double Printing (ESC G n)
[Code] [1Bh] + [47h] + n
[Range] {0 <= n <= FFh}
[Outline] Specifying/canceling the double printing.
• “n” is valid only for the lowest bit (n0).
• Control by n is shown as follows.
0 Canceling double printing.
1 Specifying double printing.
• This is effective to all characters of font A.
• Characters of font B are not highlighted.
[Caution]
• The print result of Double printing and highlight character
printing is completely same.
[See Also] ESC E
[Sample Program]
LPRINT CHR$ (&H1B) + “G” + CHR$ (0);
LPRINT “AAABBB” + CHR$ (&HA);
LPRINT CHR$ (&H1B) + “G” + CHR$ (1);
LPRINT “AAABBB” + CHR$ (&HA);
[Print Results]