aspose word for java解决Word中部分表格跨页线框缺失问题


public void completeTableBorder(Document doc){
    for(Table table:(Iterable<Table>)doc.getChildNodes(NodeType.TABLE, true)){
        //设置表格居中
				table.setAlignment(TableAlignment.CENTER);
        //设置表格左边框线
				table.setBorder(BorderType.LEFT, LineStyle.SINGLE, 1, Color.black, true);
        //设置表格右边框线
				table.setBorder(BorderType.RIGHT, LineStyle.SINGLE, 1, Color.black, true);
        //设置表格上边框线
				table.setBorder(BorderType.TOP, LineStyle.SINGLE, 1, Color.black, true);
        //设置表格下边框线
				table.setBorder(BorderType.BOTTOM, LineStyle.SINGLE, 1, Color.black, true);
				for (Row row:(Iterable<Row>)table.getChildNodes(NodeType.ROW, true)){
					for (Cell cell:(Iterable<Cell>)row.getChildNodes(NodeType.CELL, true)){
						//设置单元格上下边框
						cell.getCellFormat().getBorders().getBottom().setLineStyle(LineStyle.SINGLE);
						cell.getCellFormat().getBorders().getTop().setLineStyle(LineStyle.SINGLE);
					}
				}
			}
}


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM