Pen.LineJoin Property

Gets or sets the join style for the ends of two consecutive lines drawn with this Pen.

Namespace: Aurigma.GraphicsMill.Drawing
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

C#
public LineJoin LineJoin { get; set; }

Property Value

A System.Drawing.Drawing2D.LineJoin that represents the join style for the ends of two consecutive lines drawn with this Pen.

Remarks

This property affects only those lines which are drawn with a single call (e.g. DrawLines(Pen, Point[])). If you call DrawLine(Pen, Int32, Int32, Int32, Int32) multiple times, lines will not be joined. MiterClipped value is not supported.

See Also

Reference