![Olivetti 900X Operating Instructions Manual Download Page 56](http://html2.mh-extra.com/html/olivetti/900x/900x_operating-instructions-manual_3811344056.webp)
2) Full underline OFF (ESC R)
Format • LPRINT CHR$(27) ; " R " ; or LPRI NT CHR$(&H1 B); " R " ;
Function • When the printer receives this escape sequence, it cancels the
underline mode set by ESC E.
Sample Program
1 0 0
REM
Fu l l Under l ine On ( ESC E )
and O f f
1 1 0 LPRINT
CHR$
(
2 7 ) ; CHR$
(
2 6 ) ; " I " ; : REM PESET
1 20
REM
1 3 0
LPRINT
1 40
LPRINT
1 5 0
REM
1 60 LPRINT
1 7 0
LPRINT
Sample Printing
Fu l l Under l ine On
CHR$ ( 27 ) ; "E" ;
"Fu l l Under l ine On . "
Fu l l Under l ine O f f
CHR$
(
2 7 )
;
"R" ;
" Fu l l Underl ine O f f . "
F u l l Under line On .
Fu l l Under l ine Qff .
3) Double strike print ON (ESC 0)
( ESC R )
Format • LPRINT CHR$(27);"0"; or LPRINT CHR$(&H1 B); " O " ;
Function • This escape sequence turn the double strike printing mode on.
(All characters are printed twice )
This mode is cancelled by ESC & or CR (carriage return)
Sample Program and Sample Printing
Sample Program
100 REM
1 1 0 LPRINT
1 20 LPRINT
1 3 0 REM
1 40 LPRINT
1 5 0 LPRINT
1 6 0 REM
Doubl e S trike Print On (ESC 0 ) and
CHR$ ( 2 7 ) ; CHR$ ( 26 ) ; " I" ; : REM RESET
"No rma l Printing "
Doubl e S tr ike P rint On
CHR$ ( 2 7 ) ; "0" ;
"Doub l e S trike Printing
Doubl e S trike P r int Off
I I
1 7 0 LPRINT CHR$ ( 2 7 )
; "&" ;
1 8 0 LPRINT "Canc e l Doubl e S trike Print ing"
Sample Printing
Off (ESC &)
Norma l Printin2:
Doub l e S tr ike Printing
Cance l Doub le S trike Printing
4)
Double strike print OFF
Format . LPRINT CHR$(27);"&"; or LPRINT CHR$(&H1 B); " & " ;
Function . This escape sequence cancels bold print set b y ESC W or double
strike print set by ESC 0.
Sample Program and Sample Printing Refer to Item
3)
Double strike print
ON.
50