LineJoinStyle Enumeration
            This enumeration represents the possible styles to join the lines in a PDF document
            
Namespace: WinnovativeAssembly: WnvHtmlToPdf_NetCore (in WnvHtmlToPdf_NetCore.dll) Version: 19.0.0
public enum LineJoinStyle
Public Enumeration LineJoinStyle
 | MiterJoin | 0 | 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— see "Miter Limit"), a bevel join is used instead. | 
| RoundJoin | 1 | 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 pie slice-shaped figure is filled in, producing a rounded corner. | 
| BevelJoin | 2 | The two segments are finished with caps (see "Line Cap Style")
            and the resulting notch beyond the ends of the segments is filled with a triangle. | 
| Default | -1 | Default line join style. |