[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IFormatColor.Color

Color Property

Color

Gets or sets the Color value for this format color item.

Use this property to read the current Color value from an IFormatColor object obtained from a formatting API such as AxisColor, BarColor, FormatColor, or Color.

Declaration
Color Color { get; set; }
Property Color As Color
Examples
worksheet.Range["A1:A3"].Value = new object[,] {{-10}, {0}, {20}};
IDataBar dataBar = worksheet.Range["A1:A3"].FormatConditions.AddDatabar();
IFormatColor axisColor = dataBar.AxisColor;
Color color = axisColor.Color;