Graphics.FillRect
From Xojo Documentation
|  | This item was deprecated in version 2019r2. Please use Graphics.FillRectangle as a replacement. | 
Method
Graphics.FillRect(x As Double, y As Double, width As Double, height As Double) 
Supported for all project types and targets.
 
Supported for all project types and targets.
Draws a rectangle filled with the current color. The current color is set with the ForeColor property.
Notes
X and Y are the coordinates of the top-left corner. Width and Height specify the size of the rectangle.
Sample Code
This example draws a rectangle with a red interior.
g.ForeColor = &cff0000 // Red
g.FillRect(10, 10, 100, 60)
g.FillRect(10, 10, 100, 60)
