corelibraries-devexpress-dot-drawing-dot-dxpen-9b61fd7e.md
Gets or sets the join style for the ends of two consecutive lines.
Namespace : DevExpress.Drawing
Assembly : DevExpress.Drawing.v25.2.dll
NuGet Package : DevExpress.Drawing
public DXLineJoin LineJoin { get; set; }
Public Property LineJoin As DXLineJoin
| Type | Description |
|---|---|
| DXLineJoin |
An enumeration value that indicates the join style.
|
Available values:
| Name | Description |
|---|---|
| Miter |
Specifies a mitered join. The join results in a sharp corner or a clipped corner, depending on whether the length of the miter exceeds the miter limit.
| | Bevel |
Specifies a beveled join. The join results in a diagonal corner.
| | Round |
Specifies a circular join. The join results in a smooth, circular arc between the lines.
| | MiterClipped |
Specifies a mitered join. The join results in a sharp corner or a beveled corner, depending on whether the length of the miter exceeds the miter limit.
|
See Also