[]
Returns the IColorFormat object that represents the specified solid color.
Use this method to access or modify the solid color settings of the line.
IColorFormat Color { get; }
ReadOnly Property Color As IColorFormat
IShape connector = worksheet.Shapes.AddConnector(ConnectorType.Straight, 10, 10, 200, 100);
ILineFormat line = connector.Line;
IColorFormat color = line.Color;
color.RGB = Color.Red;