Specifications

Rev. A Command Descriptions 1-9
TM–U375/U375P Information Manual
ESC SP n
[Name] Set right-side character spacing
[Format] ASCII ESC SP n
Hex 1B 20 n
Decimal 27 32 n
[Range] 0 n 255
ESC SP n sets the right-side character spacing to [n
× (horizontal or vertical motion unit)] inches. It is
used to change the spacing between characters. The default setting is n=0. When standard mode is
selected, the horizontal motion unit set by GS P is used. When page mode is selected, the vertical or
horizontal motion unit set by GS P is used for the print direction set by ESC T.
The right-side character spacing can be set independently in standard mode and in page mode.
Program Example Print Sample
PRINT #1, CHR$(&H1D);"P";CHR$(160);CHR$(144);
PRINT #1, CHR$(&H1B);" ";CHR$(0);Character spacing set to 0
PRINT #1, "AAAAA"; CHR$(&HA);
PRINT #1, CHR$(&H1B);" ";CHR$(6);Character spacing set to 6
PRINT #1, "BBBBB"; CHR$(&HA);
PRINT #1, CHR$(&H1B);" ";CHR$(12);Character spacing set to 12
PRINT #1, "CCCCC"; CHR$(&HA);
AAAAA 0-inch right-side character spacing
BBBBB 6/160-inch right-side character spacing
CCCCC 12/160-inch right-side character spacing