本文整理汇总了Java中org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTblWidth类的典型用法代码示例。如果您正苦于以下问题:Java CTTblWidth类的具体用法?Java CTTblWidth怎么用?Java CTTblWidth使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
CTTblWidth类属于org.openxmlformats.schemas.wordprocessingml.x2006.main包,在下文中一共展示了CTTblWidth类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: widthTable
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTblWidth; //导入依赖的package包/类
private void widthTable(XWPFTable table, int width, int rows, int cols) {
CTTblPr tblPr = table.getCTTbl().getTblPr();
if (null == tblPr) {
tblPr = table.getCTTbl().addNewTblPr();
}
CTTblWidth tblW = tblPr.getTblW();
if (tblW == null) {
tblW = tblPr.addNewTblW();
}
tblW.setType(0 == width ? STTblWidth.AUTO : STTblWidth.DXA);
tblW.setW(BigInteger.valueOf(width));
if (0 != width) {
CTTblGrid tblGrid = table.getCTTbl().getTblGrid();
if (null == tblGrid) {
tblGrid = table.getCTTbl().addNewTblGrid();
}
for (int j = 0; j < cols; j++) {
CTTblGridCol addNewGridCol = tblGrid.addNewGridCol();
addNewGridCol.setW(BigInteger.valueOf(width / cols));
}
}
CTTblBorders tblBorders = tblPr.getTblBorders();
tblBorders.getBottom().setSz(BigInteger.valueOf(4));
tblBorders.getLeft().setSz(BigInteger.valueOf(4));
tblBorders.getTop().setSz(BigInteger.valueOf(4));
tblBorders.getRight().setSz(BigInteger.valueOf(4));
tblBorders.getInsideH().setSz(BigInteger.valueOf(4));
tblBorders.getInsideV().setSz(BigInteger.valueOf(4));
// for (int i = 0; i < rows; i++){
// for (int j = 0; j < cols; j++){
// XWPFTableCell cell = table.getRow(i).getCell(j);
// widthTableCell(cell, width/cols);
// }
// }
}