User`s manual
In BASIC you can send the command to set the right margin to 60
in three ways:
Decimal :
PRINT CHR$(27);CHR$(81);CHR$(60)
Hex:
PRINT CHR$(&H1B);CHR$(&H51);CHR$(&H3C)
Decimal with quotes:
PRINT CHR$(27);"Q";CHR$(60)
ESCape sequences that require a 0 or
1
with a letter, such as ESC
“Wl” to turn on expanded, can use either the ASCII code or the
numeral in quotation marks for the 0 or
1.
For example, in BASIC
you can turn on expanded with either of the formats below:
PRINT CHR$(27);"Wl"
or
PRINT CHR$(27);"W";CHR$(1)
c-2