backgroundColor property

ExcelColor get backgroundColor

Get Background Color

Implementation

ExcelColor get backgroundColor {
  return _backgroundColorHex.excelColor;
}
set backgroundColor (ExcelColor backgroundColorHex)

Set Background Color

Implementation

set backgroundColor(ExcelColor backgroundColorHex) {
  _backgroundColorHex = _isColorAppropriate(backgroundColorHex.colorHex);
}