
Th i S line is added 10 spaces.
This line is added 8 spaces.
This line is added 6 spaces.
This line is added 4 spaces.
This line is added 2 spaces. This line is Normal space.
This command can be used to produce
■
| Table |
Printing direction commands | |
Function | Control code |
Print in one direction | (ESC) “U” 1 |
Print in both directions | (ESC) “U” O |
One time print in one direction (ESC) “(”
Try this program to see the difference that printing in one direction makes.
10 ‘ Demo of
20LPRINT CHR$(27) ; “l”;
30FOR 1=1 TO 10
40LPRINT “ ! “
50NEXT I
60LPRINT : LPRINT
70LPRINT CHR$(27) ; “U1” ;
80FOR 1=1 TO 10
90LPRINT “ 1“
100NEXT I
110LPRINT CHR$(12) ;CHR$(27) ; “@”