iOSGraphics.FillOval

From Xojo Documentation

Method

iOSGraphics.FillOval(x As Double, y As Double, width As Double, height As Double)

Supported on Mobile(iOS).

Draws an oval, filling it with the FillColor.

Sample Code

From within an iOSCanvas.Paint event handler:

g.FillColor = Color.Blue
g.FillOval(10, 10, 20, 20)