Specifications
Chapter 14. Statement Reference
298
• In the BHT-6000/BHT-6500/BHT-7000/BHT-7500,
data may be displayed in
standard size or small size depending upon the display font size selected.
• If you omit
data option, a blank line is outputted. That is, the cursor moves to
the first column of the next screen line.
• Positive numbers and zero automatically display with a leading space.
• Control codes (08h to 1Fh) appear as a space, except for BS (08h), CR (0Dh) and
C (18h) codes.
BS (08h) deletes a character immediately preceding the cursor so that the cursor
moves backwards by one column.
PRINT CHR$(8);
CR (0Dh) causes a carriage return so that the cursor moves to the first column of
the next screen line.
PRINT CHR$(&h0D);
C (18h) clears the LCD screen so that the cursor moves to its home position in the
top left corner, just like the
CLS statement.
PRINT CHR$(&h18);
■ CR/LFcontrol
CR/LFcontrol
determines where the cursor is to be positioned after the PRINT
statement executes.
• If
CR/LFcontrol is a comma (,), the cursor moves to the column position of a
least multiple of 8 plus one following the last character output.
• If
CR/LFcontrol is a semicolon (;), the cursor moves to the column position
immediately following the last character output.
Statement example:
PRINT 123,
Output:
Statement example:
PRINT 123;
Output:
123 _
123_