Canvas_GetPixel documented, but not recognised
Canvas_GetPixel function is documented, but not present in the module
It seems the Canvas_GetPixel is documented, but not present in the UI module. Using it gives me error #30 -
Variable not defined or misspelled Keyword.
Small test example:
Uses "UI"
DWord hWin = Canvas_Window("Canvas Test", 1, 1, 640, 480)
Canvas_Attach(hWin, 0, %TRUE)
Canvas_Clear(%RED)
Canvas_Redraw
MsgBox 0, canvas_getPixel(1, 1)
Canvas_Window End
Petr