Метод CellRange.setCellProperties
Метод предназначен для установки свойств CellProperties ячеек диапазона.
Пример
Table firstSheet = document.getBlocks().getTable(0);
CellRange cellRange = firstSheet.getCellRange("B3:C4");
CellProperties cellProperties = new CellProperties();
cellProperties.fill = new Fill(new Color(new ColorRGBA(55, 146, 179, 200)));
cellRange.setCellProperties(cellProperties);