Changing color of a table cell in Words using java

Changing color of a table cell in Words using java code

@kalpeshAspose1997 You can achieve this using CellFormat.Shading property. For example see the following code:

cellFormat.getShading().setBackgroundPatternColor(Color.ORANGE);
1 Like