I'm currently using docx4j to create a Word document where the are a lot of tables (about 500 pages with only that...).
The problem is I can't seem to find where to set the row height.
In XML files, this is done with that :
- Code: Select all
<w:trPr>
<w:trHeight w:val="480"/>
</w:trPr>
right below the <w:t> opening tag.
But when I access the TrPr of my table, there is no function to set trHeight.
Anybody can help with that ?
Thanks a lot !