Rev. A Command Descriptions 1-9
TM-T88/T88P (TM-T85/T85P) Information Manual
The right-side character spacing can be set independently in standard mode and in page mode.
ESC % n
[Name] Select/cancel user-defined character set
[Format] ASCII ESC % n
Hex 1B 25 n
Decimal 27 37 n
[Range] 0 ≤ n ≤ 255
ESC & y c1 c2 [x1 d1 ... d(y × x1)] ... [xk d1 ... d(y × xk)]
[Name] Define user-defined characters
[Format] ASCII ESC & y c1 c2 [x1 d1 ... d(y × x1)] ... [xk d1 ... d(y × xk)]
Hex 1B 26
y
c1 c2 [x1 d1 ... d(y × x1)] ... [xk d1 ... d(y × xk)]
Decimal 27 38 y c1 c2 [x1 d1 ... d(y × x1)] ... [xk d1 ... d(y × xk)]
[Range] y = 3
32 ≤ c1 ≤ c2 ≤ 126
0 ≤ x ≤ 12 (Font A (12 × 24))
0 ≤ x ≤ 9 (Font B (9 × 24))
0 ≤ d1 ... d(y × xk) ≤ 255
k = c2-c1+1
ESC ? n
[Name] Cancel user-defined characters
[Format] ASCII ESC ? n
Hex 1B 3F n
Decimal 27 63 n
[Range] 32 ≤ n ≤ 126
ESC % n selects or cancels the user-defined character set. When the LSB (least significant bit) of n is 1,
the user-defined character set is selected. When it is 0, the internal character set is selected; this is the
default setting.
Program Example Print Sample
PRINT #1, CHR$(&H1D);"P";CHR$(180);CHR$(180);
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/180-inch right-side character spacing
CCCCC
←
12/180-inch right-side character spacing