ESC e

 

 

Set Horizontal and Vertical Tabs

Format:

ESC

 

 

 

ASCII code:

e

(n1)

(n2)

Decimal:

27

101

(n1)

(n2)

Hexadecimal: 1B

85

(n1)

(n2)

Comments:

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

 

 

Print Spaces or Line Feeds

Format:

ESC

 

 

 

ASCII code:

f

(n1)

(n2)

Decimal:

27

102

(n1)

(n2)

Hexadecimal:

1B

66

(n1)

(n2)

Comments:

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