Specifications
Revision C 16/01/96
Chapter 4 "Diablo 630" - 19
Set auto strike-out print mode
EscH (27)(72) <1Bh><48h>
This command turns on auto strike-out print mode. Subsequent text is overprinted with hyphens.
Shadow, bold and underlined characters can also be printed in strike-out mode.
Spaces are printed normally, that is, without a hyphen to strike them out.
LPRINT CHR$(27); CHR$(72); 'Strike out following text
Cancel auto strike-out print mode
EscI (27)(73) <1Bh><49h>
This command turns strike-out mode off.
LPRINT CHR$(27); CHR$(73); 'Turn strike-out mode off
Print character assigned to character code 32
EscY (27)(89) <1Bh><59h>
This command prints out the character assigned to character code 32 in the current character set.
LPRINT CHR$(27); CHR$(89); 'Print char whose code is 32
Print character assigned to character code 127
EscZ (27)(90) <1Bh><5Ah>
This command prints out the character assigned to character code 127 in the current character set.
LPRINT CHR$(27); CHR$(90); 'Print char whose code is 127