是否可以使用XWPF文档在字表中设置特定单元格的宽度而不改变其他单元格宽度?
我使用下面的代码来设置宽度,但是它是整个列的设置。
tableRow.getCell(0).getCTTc().addNewTcPr().addNewTcW().setW(BigInteger.valueOf(5000));
答案 0 :(得分:0)
我认为该单元已经创建:
Long cellWidth = 2000;
CTTblWidth width = cell.getCTTc().addNewTcPr().addNewTcW();
width.setType(STTblWidth.DXA);
width.setW(BigInteger.valueOf(cellWidth));