DEC LA120 Emulation
Example: The following escape sequence will set vertical tab stops at line 7, 13, and
25.If line spacing is 6 lpi, this will result in tab stops one inch, two inches, and four inches from the top of the form.
Escape Sequence: | ESC | [ | 7 | ; | 1 | 3 | ; | 2 | 5 | v |
Hexadecimal: | 1B | 5B | 37 | 3B | 31 | 33 | 3B | 32 | 35 | 76 |
Example: The following escape sequence will set a vertical tab stop at line seven.
Escape Sequence: | ESC | [ | 7 | v |
Hexadecimal: | 1B | 5B | 37 | 76 |
Clear Vertical Tab Stop |
|
|
| ESC [ 1 g |
Clears the vertical tab stop at the current line. The tab stop to be cleared is associated with the active line (based upon the current line spacing), not an absolute physical position.
Escape Sequence: | ESC | [ | 1 | g |
Hexadecimal: | 1B | 5B | 31 | 67 |
Clear All Vertical Tab Stops |
|
| ESC 4 | |
(or) |
|
|
| ESC [ 4 g |
Clears all currently set vertical tab stops.
Escape Sequence: | ESC | 4 |
|
|
Hexadecimal: | 1B | 34 |
|
|
Escape Sequence: | ESC | [ | 4 | g |
Hexadecimal: | 1B | 5B | 34 | 67 |
Page