单元格默认的背景色是什么,如何设置单元格为默认背景色。

使用的aspose-words-21.1.0-jdk17
this.builder.getCellFormat().getShading().getBackgroundPatternColor() 单元格默认的背景色是什么,如何设置单元格为默认背景色。

@SalesDhorde 您可以使用以下代码设置默认空颜色:

Table table = (Table) doc.getChild(NodeType.TABLE, 0, true);

for (Row row : table.getRows()) {
    for (Cell cell : row.getCells()) {
        cell.getCellFormat().getShading().setBackgroundPatternColor(new java.awt.Color(0, true));
    }
}