I have a need to generate a document without the <w15:collapsed w:val="false" /> tag which seems to be coming from the 2012 docx extensions.
Is it possible to easily disable this?
Thanks
It is currently Thu Apr 03, 2025 3:01 pm
// Add a table
int writableWidthTwips = wordMLPackage.getDocumentModel().getSections().get(0).getPageDimensions().getWritableWidthTwips();
int cols = 5;
int cellWidthTwips = new Double(Math.floor((writableWidthTwips/cols))).intValue();
Tbl tbl = TblFactory.createTable(1, 5, cellWidthTwips);
wordMLPackage.getMainDocumentPart().addObject(tbl);
Total posts 10157 • Total topics 2857 • Total members 2087