fontColor property

ExcelColor get fontColor

The colour of the cell's text.

Implementation

ExcelColor get fontColor {
  return _fontColor;
}
set fontColor (ExcelColor fontColorHex)

Sets the colour of the cell's text.

Implementation

set fontColor(ExcelColor fontColorHex) {
  _fontColor = _appropriateColor(fontColorHex);
}