Specifications
400
16.3.2 Detailed Function Specifications
Syntax: CALL "CONSOLE.FN3" .fcDot POINT%(),ATTRIB%,
COLOR%
Description:
This function draws a dot on the X/Y coordinates specified by
POINT%() according to the attributes specified by ATTRIB% and
COLOR% on the LCD.
Parameter: POINT% Coordinates to locate a dot
ATTRIB% Drawing attributes*
COLOR% Color*
*COLOR% is valid only when "0" is set to ATTRIB%.
Returned value: (None)
Run-time errors:
Example:
Drawing a dot at the coordinates (10, 50) in black
DIM POINT%(1)
POINT%(0)=10 : POINT%(1)=50 : ATTRIB%=.cnColor : COLOR%=.cnBlack
CALL"CONSOLE.FN3".fcDot POINT%(),ATTRIB%,COLOR%
.fcDot Draw a dot
POINT%(0) X-coordinate (0≤POINT%(0)≤199)
POINT%(1) Y-coordinate (0≤POINT%(1)≤303)
.cnColor 0 Draw a dot in the color specified by
COLOR%
.cnInvert 1 Draw a dot in reverse display in the current
color
.cnBlack 0 In black
.cnDGray 64 In dark gray
.cnLGray 128 In light gray
.cnWhite 255 In white
Error code Meaning
05h
Parameter out of the range
F0h
Mismatch parameter number
F1h
Mismatch parameter type
F2h
Insufficient number of array variable elements