Specifications
Rev. A Command Descriptions 1-15
TM–U375/U375P Information Manual
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. When underline mode is on, 90° clockwise rotated characters
cannot be underlined. 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
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. This command is enabled only in standard
mode. If this command is entered in page mode, an internal flag is activated and the command is
enabled when the printer returns to standard mode.
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); ← Sele ct AAAAA ← Underline mode turned on
PRINT #1, "AAAAA";CHR$(&HA); BBBBB ← Underline mode turn ed off
PRINT #1, CHR$(&H1B);"-";CHR$(0); ← Canc el
PRINT #1, "BBBBB";CHR$(&HA);
Program Example Pri nt Sample
PRINT #1, CHR$(&H1B);"E";CHR$(1); ← Select AAAAA ← Emphasized mode turned on
PRINT #1, "AAAAA"; CHR$(&HA); BBBBB ← Emphasi zed m ode turned off
PRINT #1, CHR$(&H1B);"E"; CHR$(0); ← Cancel
PRINT #1, "BBBBB"; CHR$(&HA);