User`s guide
86
CipherLab BASIC Compiler
User's Guide
Example
ON READER(1) GOSUB BcrData_1
...
BcrData_1:
BEEP(2000,5)
Data$ = GET_READER_DATA$(1)
Pre_X% = CURSOR_X
Pre_Y% = CURSOR_Y
Locate 8, 1
PRINT Data$
Locate Pre_Y%, Pre_X%
RETURN
See Also
CURSOR, CURSOR_X, LOCATE
FILL_RECT
Purpose
To fill a rectangular area.
Syntax
FILL_RECT(x%, y%, size_x%, size_y%)
Remarks
"x%" is the x coordinate of the upper left point of the rectangular area.
"y%" is the y coordinate of the upper left point of the rectangular area.
"size_x%" is the width of the rectangular area in pixels.
"size_y%" is the height of the rectangular area in pixels.
Example
FILL_RECT(1,1,20,20)
See Also
CLR_RECT
GET_IMAGE
Purpose
To read a bitmap image or capture signature of a rectangular area on the LCD.
Syntax
DataCount% = GET_IMAGE(file_index%, x%, y%, size_x%, size_y%)