DesktopOval.FillColor

From Xojo Documentation

Property (As Color )
aDesktopOval.FillColor = newColorValue
or
ColorValue = aDesktopOval.FillColor

New in 2021r3

Supported for all project types and targets.

The color of the interior of the shape.

Sample Code

The following example sets the interior color of the arc.

Var a As New ArcShape
a.ArcAngle = 1.57
a.StartAngle = -1.57
a.FillColor = RGB(255, 0, 127)
g.DrawObject(a, 100, 100)