Specifications

Rev. A Command Descriptions 1-25
TM–U375/U375P Information Manual
ESC $ nL nH sets the print starting position to [(nL + nH × 256) × (horizontal or vertical motion unit)]
inches from the left margin.
ESC \
nL nH moves the print starting position to [(nL + nH × 256) × (horizontal or vertical motion
unit)] inches from the current position. Use the complement of N for setting N pitch movement to the
left: N pitch = 65536 – N, where N = (
nL + nH × 256).
When standard mode is selected, the horizontal motion unit set by GS P is used. When page mode is
selected, the horizontal or vertical motion unit set by GS P is used for the print direction set by ESC T.
ESC a n
[Name] Select justification
[Format] ASCII ESC a n
Hex 1B 61 n
Decimal 27 97 n
[Range] 0 n ≤ 2
48 n 50
ESC a n aligns all the data in one line to a specified position. Left justification is selected when n=0 or
48, centering is selected when n=1 or 49, and right justification is selected when n=2 or 50. The default
setting is left justification (n=0). This command is enabled only at the beginning of a line 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.
Program Example Print Sample
PRINT #1, CHR$(&H1D);"P";CHR$(160);CHR$(144);
PRINT #1, "ABCD";
PRINT #1, CHR$(&H1B);"$";CHR$(80);CHR$(0);
PRINT #1, "EFGH"; CHR$(&HA);
PRINT #1, "ABCD";
PRINT #1, CHR$(&H1B);CHR$(&H5C);CHR$(80);CHR$(0);
PRINT #1, "EFGH"; CHR$(&HA);
Program Example Print Sample
FOR n=0 TO 2
PRINT #1, CHR$(&H1B);"a";CHR$(n);
PRINT #1, "ABC"; CHR$(&HA);
PRINT #1, "ABCD"; CHR$(&HA);
PRINT #1, "ABCDE"; CHR$(&HA);
NEXT n
ABCD EFGH
80/160 inch
80/160 inc h
ABCD EFGH
ABC
ABCD
ABCDE
ABC
ABCD
ABCDE
ABC
ABCD
ABCDE
ESC a
0
ESC a
1
ESC a
2