[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.ILineFormat.JoinStyle

JoinStyle Property

JoinStyle

Gets or sets the corners style of two intersecting lines. Can be one of the LineJoinStyle constants.

Declaration
LineJoinStyle JoinStyle { get; set; }
Property JoinStyle As LineJoinStyle
Examples
IShape connector = worksheet.Shapes.AddConnector(ConnectorType.Straight, 10, 10, 200, 100);
ILineFormat line = connector.Line;
line.JoinStyle = LineJoinStyle.Round;
LineJoinStyle style = line.JoinStyle;