Print modes Standard commands
108
T5023/5023+ - Programming Guide
Switching elongated print on/off
Function:
– Switching on elongated print
ESC W (1) switches elongated print on. In elongated print the width of the
characters is doubled.
– Switching off elongated print
ESC W (0) switches elongated print off.
Example:
Result:
ESC
27
1B
W
87
57
(n)
n
n
ASCII character
Decimal
Hexadecimal
Elongated print can be combined with condensed print and all the cha-
racter sizes (10, 12, 15 cpi).
BEGIN
PRINTLF("standard print")
PRINT(char(27),"W",char(1))
← Elongated print on
PRINTLF("elongated print")
PRINT(char(27),"W",char(0))
← Elongated print off
PRINTLF("standard print")
END
i