89
sheet. You can disable the
Table
Some miscellaneous commands
| (ESC) | ..8” |
| |
|
|
| ||
| I(ESC) |
|
| |
Move print head back one space CHR$@) |
| |||
Delete last character sent | CHR$(127) |
| ||
Cancel text in print buffer | CHR$(24) |
| ||
“slash zero” | (ESC) | “‘v” 1 |
| |
“normal zero” | (ESC) | “b” 0 |
| |
,- | ,~ | “i” 1 |
| |
|
|
|
| |
|
|
| “i” 0 | |
|
|
|
nBackspace, delete, and cancel text
Backspace (CHR$@)) “backs up” the print head so that you can print two characters right on top of each other. Each time your printer receives a backspace it moves the print head one character to the left, instead of to the right. You can strike over multiple letters by sending more than one backspace code.
Delete (CHR$(127)) also “backs up” one character, but then it “erases” the previous character (it’s erased from your printer’s buffer, not from the paper).
Cancel text (CHR$(24)) deletes all the text in the print buffer; that is, in the line before the delete text command. Since your printer prints one line of text at a time, only that line will be deleted.