WebGraphics.LineJoinTypes

From Xojo Documentation

Enumeration
WebGraphics.LineJoinTypes

New in 2020r1

Specifies the options for drawing line joins (where line endings intersect in a shape).

Values

Enum Description
Butt A squared-off ending that ends at the line boundary.
Round A rounded ending that extends beyond the line boundary.
Square A squared-off ending that extends beyond the line boundary.

Notes

Line Join Styles

Sample Code

This example sets the line join to Round:

g.LineJoin = WebGraphics.LineJoinType.Round

See Also

LineCap method.