Specifications

Rev. A Command Descriptions 1-15
TM–U950/U950P Information Manual
ESC – n
[Name] Turn underline mode on/off
[Format] ASCII ESC n
Hex 1B 2D
n
Decimal 27 45 n
[Range] n = 0, 1, 48, 49
ESC – n turns underline mode on or off. When n=1 or 49, underline mode is turned on, and when n=0
or 48, underline mode is turned off. The default setting is n=0.
ESC E n
[Name] Turn emphasized mode on/off
[Format] ASCII ESC E n
Hex 1B 45 n
Decimal 27 69 n
[Range] 0
n
≤ 255 (Only the least significant bit of n is enabled.)
ESC E n turns emphasized mode on or off. When the LSB (least significant bit) of n is 1, emphasized
mode is turned on; when it is 0, emphasized mode is turned off. The default setting is n=0.
Emphasized and double-strike printing appear the same.
ESC G n
[Name] Turn double-strike mode on/off
[Format] ASCII ESC G n
Hex 1B 47 n
Decimal 27 71 n
[Range] 0
n
≤ 255
Program Example Print Sample
PRINT #1, CHR$(&H1B);"-";CHR$(1); AAAAA
Underline turned on
PRINT #1, "AAAAA"; CHR$(&HA); BBBBB
Underline turned off
PRINT #1, CHR$(&H1B);"-";CHR$(0);
PRINT #1, "BBBBB"; CHR$(&HA);
Program Example Print Sample
PRINT #1, CHR$(&H1B);"E";CHR$(1);
AAAAA
Emphasized
PRINT #1,"AAAAA"; CHR$(&HA); BBBBB
Normal
PRINT #1, CHR$(&H1B);"E";CHR$(0);
PRINT #1,"BBBBB"; CHR$(&HA);