Class LineJoins
Line-join style for stroked paths. Maps to the PDF j operator
(ISO 32000-1 §8.4.3.4).
Inheritance
Namespace: IronSoftware
Assembly: IronPdf.dll
Syntax
public sealed class LineJoins : Enum
LineJoins controls how IronPDF renders the corner where two stroked path segments meet, mapping directly to the PDF j operator (ISO 32000-1 §8.4.3.4). Miter is the default sharp-pointed join, Round produces a smooth circular arc at each corner, and Bevel cuts the corner with a flat diagonal. Set this value when styling drawn shapes or borders in a PDF document.
stamp.LineJoin = LineJoins.Round;See IronPDF drawing and stamping for practical usage.
Fields
Bevel
The two segments are finished with butt caps and the resulting notch beyond the ends of the segments is filled with a triangle.
Declaration
public const LineJoins Bevel
Field Value
| Type | Description |
|---|---|
| LineJoins |
Miter
Outer edges of the strokes at the two segments are extended until
they meet at an angle. Default for new PDFs. Subject to the
miter-limit (PDF M operator).
Declaration
public const LineJoins Miter
Field Value
| Type | Description |
|---|---|
| LineJoins |
Round
An arc of a circle with diameter equal to the line width is drawn around the point where the two segments meet and filled in.
Declaration
public const LineJoins Round
Field Value
| Type | Description |
|---|---|
| LineJoins |
value__
Declaration
public int value__
Field Value
| Type | Description |
|---|---|
| System.Int32 |