Genicom GEK 00031B Printer User Manual


 
GEK-00029B 5000 Series Programmer’s Manual
115
ESC B n1 ... n64 0 Set Vertical Tab Stops:
This sequence sets up to 64 vertical tabs by
line number. The tabs must be in ascending order and the sequence
must end with a NUL. ESC B NUL clears all tab stops. These tabs are
stored as absolute values, so they are not affected by changes in lpi
settings. This command resets any previously set tab stops.
Variable n represents values 1 through 254.
Decimal: 27 66 <nl>...<n64> 0
Hex: 1B 42 <n1>...<n64> 00
BASIC: CHR$(27);"B<nl>...<n64>";CHR$(0);
ESC C n Set Form Length in Lines:
The value of n sets the form length in
lines using the current line spacing setting. The maximum length is
22 inches (176 lines for 8 lpi, etc.). Top of form is set to the current
form position. Once set, changing the line spacing has no effect on
form length.
Decimal: 27 67 <n>
Hex: 1B 43 <n>
BASIC: CHR$(27);"C<n>";
ESC C 0 n Set Form Length in Inches:
The value of n sets the form length from
1 to 22 inches. Top of form is set at the current vertical position.
Once set, changing the line spacing has no effect on form length.
Decimal: 27 67 0 <n>
Hex: 1B 43 00 <n>
BASIC: CHR$(27);"C";CHR$(0);"<n>";
ESC D n1...n28 0 Set Horizontal Tab Stops:
Sets horizontal tab stops at the positions
specified "n" expressed in columns at the current cpi. Once set,
changing the cpi has no effect on the tab positions. ESC D NUL clears
all tab stops. Tab stops must be specified in ascending order. If more
than 28 parameters are specified, the command is terminated.
Decimal: 27 68 <n1>...<n28> 0
Hex: 1B 44 <n1>...<n28> 0
BASIC: CHR$(27);"D<n1>…<n28>";CHR$(0);
ESC E Start Emphasized Print
Decimal: 27 69
Hex: 1B 45
BASIC: CHR$(27):"E";
ESC F Stop Emphasized Print
Decimal: 27 70
Hex: 1B 46
BASIC: CHR$(27);"F"';
ESC G Start Double-Strike Print
Decimal: 27 71
Hex: 1B 47
BASIC: CHR$(27);"G";