[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.ILineFormat.Color

Color Property

Color

Returns the IColorFormat object that represents the specified solid color.

Use this method to access or modify the solid color settings of the line.

Declaration
IColorFormat Color { get; }
ReadOnly Property Color As IColorFormat
Examples
IShape connector = worksheet.Shapes.AddConnector(ConnectorType.Straight, 10, 10, 200, 100);
ILineFormat line = connector.Line;
IColorFormat color = line.Color;
color.RGB = Color.Red;