Rev. A
Command Descriptions 1-21
TM–U200/U200P Information Manual
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 when input at the beginning of a line.
Bit-Image Command
The TM-U200/U200P printers support the following bit-image command.
Command
Name
ESC
✻
Select bit-image mode
ESC
✻
m
n
L
n
H
[d]k
[Name]
Select bit-image mode
[Format]
ASCII
ESC
✻
m
n
L
n
H
d1...dk
Hex
1B
2A
m
n
L
n
H
d1...dk
Decimal
27
42
m
n
L
n
H
d1...dk
[Range]
m = 0, 1
0
≤
n
L
≤
255
0
≤
n
H
≤
3
0
≤
d
≤
255
k =
n
L
+
n
H
×
256
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
ABC
ABCD
ABCDE
ABC
ABCD
ABCDE
ABC
ABCD
ABCDE
ESC a 0
ESC a 1
ESC a 2