[]
Sets the specified line to a uniform color.
After calling this method, use Color to configure the solid color of the line.
void Solid()
Sub Solid()
IShape connector = worksheet.Shapes.AddConnector(ConnectorType.Straight, 10, 10, 200, 100);
ILineFormat line = connector.Line;
line.Solid();
line.Color.RGB = Color.Red;