In This Topic
GdPicture14 Namespace / PdfLineJoinStyle Enumeration

PdfLineJoinStyle Enumeration

In This Topic
Specifies the shape of joints between connected segments of a stroked path.
Syntax
'Declaration
 
<ComVisibleAttribute(True)>
Public Enum PdfLineJoinStyle 
   Inherits System.Enum
[ComVisible(true)]
public enum PdfLineJoinStyle : System.Enum 
public enum PdfLineJoinStyle = class(System.Enum)
ComVisibleAttribute()
public enum PdfLineJoinStyle extends System.Enum
[ComVisible(true)]
__value public enum PdfLineJoinStyle : public System.Enum 
[ComVisible(true)]
public enum class PdfLineJoinStyle : public System.Enum 
Members
MemberValueDescription
PdfLineJoinStyleBevel2The two segments are finished with butt caps and the resulting notch beyond the ends of the segments is filled with a triangle.
PdfLineJoinStyleMiter0The 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.
PdfLineJoinStyleRound1An 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.
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         GdPicture14.PdfLineJoinStyle

See Also