[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IFont.Color

Color Property

Color

Gets or sets the font color.

Declaration
Color Color { get; set; }
Property Color As Color
Examples
IRange cell = worksheet.Range["A1"];
cell.Value = "Title";

IFont font = cell.Font;
font.Color = Color.Red;

Color color = font.Color;