[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.ILineFormat.Solid

Solid Method

Solid()

Sets the specified line to a uniform color.

After calling this method, use Color to configure the solid color of the line.

Declaration
void Solid()
Sub Solid()
Examples
IShape connector = worksheet.Shapes.AddConnector(ConnectorType.Straight, 10, 10, 200, 100);
ILineFormat line = connector.Line;
line.Solid();
line.Color.RGB = Color.Red;