MAKING SR-lo/15 PRINT DARKER
The following table shows the control codes for getting into and out of
Table
Print emphasis commands
Function | Mode | Control code |
| |
STAR | <ESC> | “G” |
| |
| IBM | <ESC> | “G” |
|
STAR | <ESC> | “II” |
| |
| IBM | <ESC> | “H” |
|
Emphasized ON | STAR | <ESC> | “E” |
|
I | t IBM | 1 <ESC > | “I?’ | I |
Emphasized OFF | STAR | <ESC> | “F” |
|
| IBM | <ESC> | “F” |
|
Try them now with this little program:
10 'Demo
20 LPRINT CHR$(27) "G" ; 'Double strike on.
30 LPRINT "This line is
44)LPRINT CHR$(27) "E" ; 'Emphasized on.
'-
50 LPRINT "This line is
70 LPRINT "This line is EMPHASIZED printing."
80 LPRINT CHR$(27) "F" ; 'Emphasized off.
90 LPRINT "This line is normal printing."
Run this program. The results will look like this:
Thilr linr im
This linm im
This line is EMPHASIZED printing.
This line isj normal printing.
43