![SPRT SP-RMD8D User Manual Download Page 21](http://html1.mh-extra.com/html/sprt/sp-rmd8d/sp-rmd8d_user-manual_1352056021.webp)
18
ESC W
Enlarge Width and Height
Format: ASCII:
:
ESC
W
n
Decimal:
27
87
n
Hexadecimal:
1B
57
n
Explanation:
After inputting this command, the characters, graphics and Chinese characters are printed
at n times of normal width and height, n=1
~
8.
Remark: n=1
~
8, the other value of n will be invalid.
FOR I=1 TO 3
’ from 1 to 3 times
LPRINT CHR$ (27); CHR$ (87); CHR$ (I); ’ESC W command
LPRINT “SPRM”;
’Print character string
NEXT I
The print result is as following:
ESC -
Select/cancel Underline Print
Format: ASCII:
ESC
-
n
Decimal:
27
45
n
Hexadecimal:
1B
2D
n
Explanation:
When the lowest dot n=1, select underline print; when the lowest dot n=0, cancel underline
print.
All characters including spaces will be printed out with underline after selecting underline
print command, unless cancel the underline print command. This command is also valid
for Chinese characters.
Remark: Only the lowest dot of n is valid. Default n=0.
The BASIC programs for observing the effect of this command are as below:
LPRINT CHR$ (27); CHR$ (57); CHR$ (2); ’ Enlarge the width and height twice
LPRINT “SPRM”;