BorderColor property

From Xojo Documentation

Property (As Color )
a<see below>.BorderColor = newColorValue
or
ColorValue = a<see below>.BorderColor

Supported for all project types and targets.

The color of the object's border.

Objects implementing the BorderColor property

Example

The following example adds a blue border to the arc.

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