In Development
Last Updated: 20 Aug 2026 07:25 by ADMIN

When the table is nested in another table with fixed-width and the nested one has more than one cell in the row, where the one has a preferred width set to auto and the other has content that split on more than one row, then the first cell is exported with a wrong width.

In Development
Last Updated: 17 Aug 2026 19:33 by ADMIN
WordsProcessing: RtfFormatProvider: Does not export "cellx" correctly when table LayoutType is FixedWidth.
In Development
Last Updated: 14 Aug 2026 09:19 by ADMIN
The Indent property of Table is not respected by PdfFormatProvider.
In Development
Last Updated: 14 Aug 2026 08:33 by ADMIN
When table cell preferred width is smaller than the first word in the cell the actual exported width should fit the word width when exporting to PDF. 

Currently in such case the word is split into two lines. The width has to be equal to the word width so the word stays on a single row.
In Development
Last Updated: 13 Aug 2026 19:46 by ADMIN
In Development
Last Updated: 13 Aug 2026 19:40 by ADMIN
Exporting to PDF of a table with a first cell having preferred width of 100% and a second cell having preferred width of auto will result in missing the second cell.
In Development
Last Updated: 13 Aug 2026 16:17 by ADMIN

When the table width is set to fixed with the value of zero:

<w:tblW w:w="0" w:type="dxa"/>
 the table is exported as a vertical line split into several pages.

In Development
Last Updated: 13 Aug 2026 15:48 by ADMIN

Importing HTML tables with mixed inline width styles and auto-width cells, then exporting to PDF, can produce missing/narrow columns or wrapped labels.

For example, a 4-cell row with td style="width: 60%" and td style="width: 40%" causes the unlabeled cells to collapse in PDF output, even though the HTML renders correctly in browser.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<body>
    <table>
            <tr>
                <td align="right">Customer:</td>
                <td style="width: 60%;">Angel Popov</td>
                <td align="right">Date:</td>
                <td style="width: 40%;">4/4/2004</td>
            </tr>
     </table>
</body>
</html>

Expected: all cells keep visible widths and text stays on one line.
Actual: auto columns shrink too much or disappear during PDF export after HTML import.

In Development
Last Updated: 11 Aug 2026 16:16 by ADMIN
When measuring nested tables and the levels are more than 5 level, the export is very slow.