Enum LineJoin
Describes the shape that joins two lines or segments.
public enum LineJoin
Fields
Bevel = 1
Beveled vertices.
Miter = 0
Regular angular vertices.
MiterOrBevel = 3
Regular angular vertices unless the join would extend beyond the miter limit; otherwise, beveled vertices.
Round = 2
Rounded vertices.
Remarks
A miter limit affects how sharp miter joins are allowed to be. If the line join style is D2D1_LINE_JOIN_MITER_OR_BEVEL, 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.
The following illustration shows different line join settings for the same stroked path geometry.