|
|
|
|
|
|
| Table |
|
|
|
|
| |
|
|
|
|
|
| Control code | area commands |
|
| ||||
|
|
| Function |
|
|
| Control code |
| |||||
Printable | code | area | expansion |
| < ESC | > | “6” | (Standard | mode | only) | |||
Control | code | area | expansion |
| < ESC | > | “7” | (Standard | mode | only) | |||
Select | undefined | codes | as characters | < ESC | > | “I”1 (except | |||||||
Cancel | undefined | codes | as characters | < ESC | > | “I”0 (except | |||||||
characters | from all character | set | < ESC | > | “\” | nl n2 | |||||||
a character | from | all character | set | < ESC | > | “ * ” | mode | only) |
nPrinting BIG characters
You can even enlarge your character sets for attention- grabbing headings or special effects. There are six commands you can use. Everything following any of them will be enlarged as shown below, until the cancel code is entered.
Table
Big character commands
Function | Control code |
<ESC > “h” CHR$(Z)
<ESC > “h” CHRS(3)
1< ESC > “h” CHRS(4)
<ESC > “h” CHR%(S)
<ESC > “h” CHRS(6)
<ESC > “h” CHR%(O)
Try this program to see the big characters.
10' Demo of BIG characters
20LPRINT "THIS IS ";
30LPRINT CHR$(27);"h";CHR$(l);
40LPRINT "DOUBLE";
50LPRINT CHR$(27);"h";CHR$(O);
60LPRINT u SIZED PRINTING." :LPRINT
70LPRINT "THIS IS ";
80LPRINT CHR$(27);"h";CHR$(2);
90LPRINT “QUAD";
100LPRINT CHR$(27);"h";CHR$(O);
110LPRINT ' SIZED PRINTING."
120END