
PT-Basic Programming Manual Ver. 1.00 65/143
To enable or disable the status bar.
status% is an integer variable indicating the status bar is on
or off.
If using this command, all of the TextBlock setting will be
reset.
To display data in the activated TextBlock.
PRINT expression[{,|;[expression]}]
PRINT "Print data"
X% = CURSOR_X
Y% = CURSOR_Y
PRINT "Cur. Location=>(";X%;",";Y%;")"
expression may be numeric or string expression.
The position of echo printed item is determined by the
punctuation used to separate items in the list. In the list of
expression, a comma causes the next character to be printed
after the last character with a blank space. A semicolon
causes the next character to be printed immediately after the
last character. If the list of expressions terminates without a
comma or semicolon, a carriage return is printed at the end of
the line.
To clear a rectangular area in the activated TextBlock. The
cursor position is not affected after the operation.
CLR_RECT(left% , top% , width% , height%)
CLR_RECT(100,100,100,100)
Several key argument as below:
Fill from the start point of X-axis (pixel).
Fill from the start point of Y-axis (pixel).
Fill the width from the start point (pixel).
Fill the height from the start point (pixel).
Kommentare zu diesen Handbüchern