LineJoin {Microsoft.VisualBasic.Imaging} | .NET clr documentation |
Specifies how to join consecutive line Or curve segments in a figure (subpath) contained in a System.Drawing.Drawing2D.GraphicsPath object.
# 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;
}
Miter
: LineJoinBevel
: LineJoinRound
: LineJoinMiterClipped
: LineJoin