[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.LineJoinStyle

LineJoinStyle Enum

Specifies the corner style applied where two lines intersect.

Use this enumeration with JoinStyle to control how shape or connector line corners are rendered.

Namespace: GrapeCity.Documents.Excel.Drawing
Assembly: DS.Documents.Excel.dll
Syntax
public enum LineJoinStyle
Public Enum LineJoinStyle
Examples
IShape connector = worksheet.Shapes.AddConnector(ConnectorType.Straight, 10, 10, 200, 100);
ILineFormat line = connector.Line;
line.JoinStyle = LineJoinStyle.Round;

Fields

Name Description
Bevel

Specifies the corners where the two lines intersect are cut off at a 45 degree angle.

Miter

Specifies the corners where the two lines intersect are squared off.

Round

Specifies the corners where the two lines intersect are rounded.