Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ShapeOutline.JoinType Property

Gets or sets a join style for two intersecting lines.

Namespace: DevExpress.Spreadsheet.Drawings

Assembly: DevExpress.Spreadsheet.v24.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