— 64 —
ESC – n
[Function] Specifying/Canceling underline
[Code] <1B>H<2D>H<n>
[Range] 0 n 2
48 n 50
[Outline] Specifying/canceling an underline.
n=0, 48 Canceling an underline
n=1, 49 Specifying an underline for 1-dot width
n=2, 50 Specifying an underline for 2-dots width
[Caution] • An underline is attached to the full character width. It is,
however, not attached to the part having been skipped by
horizontal tab command.
• An underline is not attached to a 90 - right-turned characters.
[Default] n = 0
[See Also] ESC !, FS -
[Sample Program]
[Print Results] Underline Canceled
Underline Specified
←→
←→
AAAAAAAAAA
LPRINT CHR$(&H1B) + “-” + CHR$(0);
LPRINT “AAAAA”;
LPRINT CHR$(&H1B) + “-” + CHR$(1);
LPRINT “AAAAA” + CHR$(&HA);
END