LineJoin {Microsoft.VisualBasic.Imaging} .NET clr documentation

LineJoin

Description

Specifies how to join consecutive line Or curve segments in a figure (subpath) contained in a System.Drawing.Drawing2D.GraphicsPath object.

Declare

            
# namespace Microsoft.VisualBasic.Imaging
export class LineJoin extends Enum {
   # Specifies a mitered join. This produces a sharp corner Or a clipped corner, depending
   #  on whether the length of the miter exceeds the miter limit.
   Miter: LineJoin = 0;

   # Specifies a beveled join. This produces a diagonal corner.
   Bevel: LineJoin = 1;

   # Specifies a circular join. This produces a smooth, circular arc between the lines.
   Round: LineJoin = 2;

   # Specifies a mitered join. This produces a sharp corner Or a beveled corner, depending
   #  on whether the length of the miter exceeds the miter limit.
   MiterClipped: LineJoin = 3;

}

        

.NET clr type reference tree

  1. this class extends from Enum class: Enum
  2. use by field member Miter: LineJoin
  3. use by field member Bevel: LineJoin
  4. use by field member Round: LineJoin
  5. use by field member MiterClipped: LineJoin

[Package {$package} version {$version} Index]