[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.ILineFormat.CapStyle

CapStyle Property

CapStyle

Gets or sets the cap style for the end of the line. Can be one of the LineCapStyle constants.

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