A SERVICE OF

logo

ESC e
Set Horizontal and Vertical Tabs
Format:
ASCII code:
ESC
Decimal:
27
Hexadecimal: 1B
Comments:
e (n1) (n2)
101 (n1) (n2)
85 (n1) (n2)
Sets horizontal and vertical tab increments.
Horizontal format when nl = 0. In BASIC:
CHR$(27);“eO”;CHR!$(n)
where n is the number of spaces and equals:
0 - 21 in pica, 0 - 25 in elite, 0 - 36 in compressed.
Vertical format when nl = 1. In BASIC:
CHR$(27);“el”;CHR$(n)
where n is the number of line feeds and equals:
INT(255/x) for x/216-inch line spacing,
INT(85/x) for x/72-inch line spacing.
7 for 12-dot line spacing.
ESC f
Format:
ASCII code:
ESC
Decimal:
27
Hexadecimal: 1B
Comments:
Print Spaces or Line Feeds
f (n1) (n2)
102 (n1) (n2)
66 (n1) (n2)
Prints spaces or line feeds without carriage returns.
Horizontal format when nl = 0. In BASIC:
CHR$(27);“fO”;CHR$(n)
where n is the number of spaces and equals 0 - 127.
Vertical format when nl = 1. In BASIC:
CHR$(27);“fl”;CHR$(n)
where n is the number of line feeds and equals 0 - 127.
C-18