Skip to main content

ShapeOutline.JoinType Property

Gets or sets a join style for two intersecting lines.

Namespace: DevExpress.Spreadsheet.Drawings

Assembly: DevExpress.Spreadsheet.v23.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

Declaration

ShapeLineJoinStyle JoinType { get; set; }

Property Value

Type Description
ShapeLineJoinStyle

A ShapeLineJoinStyle enumeration value that specifies the join type.

Available values:

Name Description Example
Bevel

Specifies that a corner where two lines intersect is cut off at a 45 degree angle.

SpreadsheetDrawings_LineJoinStyle_BevelJoinType

Miter

Specifies that a corner where two lines intersect is sharp or clipped, depending on the ShapeOutline.MiterLimit value.

SpreadsheetDrawings_LineJoinStyle_MitterJoinType

Round

Specifies that a corner where two lines intersect is rounded.

SpreadsheetDrawings_LineJoinStyle_RoundJoinType

Remarks

Use the JoinType property to specify the appearance of two intersecting lines: whether it is rounded (ShapeLineJoinStyle.Round), squared (ShapeLineJoinStyle.Miter) or beveled (ShapeLineJoinStyle.Bevel).

See Also