Rev. A Command Descriptions 1-23
TM-T88/T88P (TM-T85/T85P) Information Manual
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). In standard mode, this command is enabled only when processed at
the beginning of a line. In page mode, an internal flag is activated and this command is enabled when
the printer returns to standard mode.
HT
[Name] Horizontal tab
[Format] ASCII HT
Hex 09
Decimal 9
ESC D n1 ... nk NUL
[Name] Set horizontal tab positions
[Format] ASCII ESC D n1 ... nk NUL
Hex 1B 44 n1 ... nk 00
Decimal 27 68 n1 ... nk 0
[Range] 1 ≤ n ≤ 255
0 ≤ k ≤ 32
HT moves the print start position to the next horizontal tab. This command is ignored unless the next
horizontal tab position has been set.
ESC D n1 ... nk NUL sets a horizontal tab position to n columns from the beginning of a line, with k
indicating the total number of horizontal tab positions to be set. When a left margin is set in standard
mode, the position of the left margin is the beginning of the line. A maximum of 32 tab positions can
be set. This command cancels any previous horizontal tab settings. The default tab positions are
every eight characters for the font A (12 × 24).
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