Hi,
I am creating a word document using docx4j within which I have several tables.
I would like to set table design/style for each table as well as setting the options such as "header row" "first column" etc.
I have the following:
Tbl table = factory.createTbl();
// here adding content to the table ...
TblPr tblPr = factory.createTblPr();
TblPr tblPr = factory.createTblPr();
TblStyle tblStyle = factory.createCTTblPrBaseTblStyle();
tblStyle.setVal("LightGrid");
tblPr.setTblStyle(tblStyle);
// somewhere here I would like ...