Hi guys
I've noticed an issue with tables that have different cell widths per row for all versions after 10.4.5. I'm currently testing with 10.9.6
The example below creates a table, the first row has one column with 100% width, the second row has 2 columns with 50% width each
var row = table.AddRow(1);
row.Cells[0].SetCellWidth(100, Spire.Doc.CellWidthType.Percentage);
var row2 = table.AddRow(2);
row2.Cells[0].SetCellWidth(50, Spire.Doc.CellWidthType.Percentage);
row2.Cells[1].SetCellWidth(50, Spire.Doc.CellWidthType.Percentage);
Outputting this to DOCX or PDF worked fine with 10.4.5 (first screenshot attached)
After 10.4.5, DOCX output is fine but PDF output distorts the column widths for the second row (second screenshot attached) - it looks more like 70/30 instead of 50/50 width
I've found that I can resolve it by NOT setting column width to 100% for rows that only have a single cell, but thought I would mention it incase it's a bug