[]
Gets or sets the font color.
Color Color { get; set; }
Property Color As Color
IRange cell = worksheet.Range["A1"]; cell.Value = "Title"; IFont font = cell.Font; font.Color = Color.Red; Color color = font.Color;