This documentation is for the old version. Go to the latest Graphics Mill docs

Pen.LineJoin Property

Gets/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

Visual Basic
Public Property LineJoin As LineJoin
C#
public LineJoin LineJoin { get; set; }

Property Value

LineJoin value specifying line join behaviour of the pen. MiterClipped value is not supported.

Remarks

This property affects only on 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.

See Also

Reference