Oval.BorderThickness

From Xojo Documentation

Property (As Double )
aOval.BorderThickness = newDoubleValue
or
DoubleValue = aOval.BorderThickness

New in 2019r2

Supported for all project types and targets.

The width of the border, in points. The default is 1.

Sample Code

This example sets the border width to 2.75 points.

Var a As New Oval
a.Border = 100
a.BorderColor = &c0000ff
a.BorderThickness = 2.75
a.FillColor = RGB(255, 0, 127)
g.DrawObject(a, 100, 100)