Epson LX-90TM Installation Manual Page 23

  • Download
  • Add to my manuals
  • Print
  • Page
    / 59
  • Table of contents
  • BOOKMARKS
  • Rated. / 5. Based on customer reviews
Page view 22
On the HomeWriter- printing modes are cancelled in three
different ways:
l
With a specific cancelling code, such as the CHR$(15) that you used
to cancel expanded printing.
l
By turning the printer off and back on.
l
Automatically at the end of a line. Unlike expanded, most printing
effects stay on only for one line. Therefore, you don’t have to turn
them off if you use them for one whole line.
Reverse printing
In reverse printing the letters and characters are white on a black
background instead of the usual black on a white background. The
code that turns this effect on is CHR$(18), and the one that turns it off
is CHR$(146). Enter and run the following program to see this mode
in action. Be sure to include the semicolon at the end of line 40. Again
type NEW to erase the previous program before you enter this pro-
gram.
NEW
10 OPEN3,4
20 PRINT#3,CHR$(18)"REVERSE PRINTING"
30 PRINT#3,"REVERSE PRINTING OFF"
40
PRINT#3,CHR$(18)"REVERSE"CHR$(146);
50
PRINT#3,"
AND STANDARD PRINTING"
REVERSE PRINTING
REVERSE PRINTING OFF
REVERSE AND STANDARD PRINTING
The printout above shows the two ways that reverse printing is
turned off:
l
By the ending of a print line
l
By the CHR$(146) code.
The words in line 20 are in reverse printing because that effect was
turned on with CHR$(18), but the next line is standard printing
because reverse printing stays on for only one line unless it is turned
on again. The first word of the last print line is in reverse printing, but
the rest is in standard printing because reverse is turned off by
CHR$(146).
19
Page view 22
1 2 ... 18 19 20 21 22 23 24 25 26 27 28 ... 58 59

Comments to this Manuals

No comments