CanvasLineJoin Enumeration |
Namespace: Microsoft.Graphics.Canvas.Geometry
public enum CanvasLineJoin
Member name | Value | Description | |
---|---|---|---|
Miter | 0 | Regular angular vertices. | |
Bevel | 1 | Beveled vertices. | |
Round | 2 | Rounded vertices. | |
MiterOrBevel | 3 | Regular angular vertices unless the join would extend beyond the miter limit; otherwise, beveled vertices. |
A miter limit affects how sharp miter joins are allowed to be. If the line join style is MiterOrBevel, then the join will be mitered with regular angular vertices if it doesn't extend beyond the miter limit; otherwise, the line join will be beveled.
This illustration shows different line join settings for the same stroked path geometry.