Returns or sets the color of the font. Use the
RGB function to create a color value. Read/write Longword.
ThemeColor / TintAndShade are not exposed on the classic XLS font API. Use Color, ColorIndex, and the workbook palette for .xls output. See
Classic XLS color model.
Syntax
property Color: Longword;
Example
This example changes the font color in cell A1 on sheet one to red.
Workbook.Worksheets[1].Range['A1', 'A1'].Font.Color := RGB(255, 0, 0);