 | LineJoin Enumeration |
Represents line join styles. The line join style specifies the shape to be used at the corners of paths that are stroked.
Namespace:
Patagames.Pdf.Enums
Assemblies:
Patagames.Pdf.Xamarin.iOS (in Patagames.Pdf.Xamarin.iOS.dll) Version: 4.84.2704
Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.84.2704
SyntaxPublic Enumeration LineJoin
public enum class LineJoin
Patagames.Pdf.Enums.LineJoin = function();
Patagames.Pdf.Enums.LineJoin.createEnum('Patagames.Pdf.Enums.LineJoin', false);
Members
| Member name | Value | Description |
---|
| Miter | 0 |
Miter join.
|
| Round | 1 |
Round join.
|
| Bevel | 2 |
Bevel join.
|
Remarks
Join styles are significant only at points where consecutive segments of a path connect at an angle; segments that
meet or intersect fortuitously receive no special treatment.
TABLE 4.5 Line join styles
Style | Appearance | Description |
---|
Miter |  | The outer edges of the strokes for the two segments are extended until they meet at an angle, as in a picture frame. If the segments meet at too sharp an angle (as defined by the miter limit parameter), a bevel join is used instead. |
Round |  | An arc of a circle with a diameter equal to the line width is drawn around the point where the two segments meet, connecting the outer edges of the strokes for the two segments.This pieslice-shaped figure is filled in, producing a rounded corner. |
Bevel |  | The two segments are finished with butt caps and the resulting notch beyond the ends of the segments is filled with a triangle. |
See Also