[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.ILineFormat.Style

Style Property

Style

Gets or sets the LineStyle object that represents the ILineFormat style.

Use this method to retrieve the current compound line style applied to a shape line, such as Single or ThickBetweenThin.

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