[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.ILineFormat.DashStyle

DashStyle Property

DashStyle

Gets or sets the dash style for the specified line. Can be one of the LineDashStyle constants.

Declaration
LineDashStyle DashStyle { get; set; }
Property DashStyle As LineDashStyle
Examples
IShape connector = worksheet.Shapes.AddConnector(ConnectorType.Straight, 10, 10, 200, 100);
ILineFormat line = connector.Line;
line.DashStyle = LineDashStyle.Dash;
LineDashStyle dashStyle = line.DashStyle;