![background image](/manuals/213760/101/background.png)
Standard commands
Horizontal print control
T5023/5023+ - Programming Guide
91
Example:
The character spacing is increased step- by- step.
Result:
BEGIN
SET N = 1
REPEAT
SET N = N + 2
PRINT(char(27)," ",char(N))
PRINTLF("Spacing for n equal to ",N)
UNTIL N = 9
END