We recently upgraded from aspose.Words V 14 to aspose.Words V 17.7.(We have an enterprise license - but I am having trouble submitting a ticket to paid support - working on that)
We have a complex report we generate as a word doc, we use probably 80% of aspose features. especially a lot of tables. Wen doing compatibility testing between 14 and 17 we ran into the following issue not seen in 14. I created the minimum code below that illustrates the problem.
After bldr.EndTable() font is “popped” back to white, instead of staying black.
bldr.StartTable();
bldr.SetFont(fontSize: 9, fontName: “Arial”, bold: false, fontColor: Color.White); // (1) font set white
bldr.InsertCell();
bldr.EndRow();
bldr.SetFont(bold: false, fontColor: Color.Black); // (2) font set black
bldr.EndTable();
//font back to white.
Obviously I can work around this - but it would be in a lot of places. Again - 14 has no such issues, only 17.7.
Thanks
Sean. (AJG001)