A SERVICE OF

logo

3 – 10 Programming
Horizontal Tabulation
ASCII Decimal Hexadecimal
ESC D 0 27 68 0 1B 44 00
Horizontal tabs are set at every 8th character when power is first
switched ON. To eliminate the tab settings, use the ESC D 0 command.
Horizontal Tabbing
ASCII Decimal Hexadecimal
HT 9 09
Advances to the next tab position which occurs every 8th character. The
command is ignored if it exceeds the right margin or the maximum
number of settings.
20 LPRINT “TAB”;
30 LPRINT CHR$(9);“TAB AGAIN”