Table of Contents

Enum LineJoin

Namespace
Xui.Core.Canvas
Assembly
Core.dll

Specifies how two connected lines are joined when stroking a path. Mirrors the lineJoin property in the HTML5 Canvas API.

public enum LineJoin

Fields

Bevel = 2

Lines are joined with a beveled corner by connecting the outer corners of the strokes.

Miter = 0

Lines are joined with a sharp corner or extended miter, depending on the miter limit.

Round = 1

Lines are joined with a circular arc, creating a rounded corner.