Specifications

Revision C 16/01/96
Chapter 6 " IBM Proprinter XL " - 16
Set superscript or subscript character mode
EscSn (27)(83)n <1Bh><53h>n
This command allows you to print superscripts or subscripts.
Set n to 0 to print subsequent text using superscript characters.
Set n to 1 to print subsequent text using subscript characters.
LPRINT CHR$(27); CHR$(83); CHR$(1); 'Turn on subscript mode
Cancel superscript or subscript character mode
EscT (27)(84) <1Bh><54h>
This command stops superscript or subscript printing if either had been enabled.
Subsequent text is printed using normal characters.
LPRINT CHR$(27); CHR$(84); 'Turn off superscript/subscript mode
Underline mode
Esc-n (27)(126)n <1Bh><7Eh>n
This command turns character underlining on or off.
If n is set to 1 subsequent text is underlined.
Horizontal tab spaces are not underlined irrespective of whether underlining mode is on or off.
If n is set to 0 subsequent text is not underlined.
LPRINT CHR$(27); CHR$(45); CHR$(1); 'Underline following text
Continuous overline mode
Esc_n (27)(95))n <1Bh><5Fh>n
This command turns character overline printing on or off.
If n is set to 1 subsequent text is printed with a continuous line above it.
Horizontal tab spaces are not printed overlined irrespective of whether overline printing mode
is on or off.
If n is set to 0 subsequent text is not printed with an overline.
LPRINT CHR$(27); CHR$(95); CHR$(1); 'Print following text with an
overline