zoukankan      html  css  js  c++  java
  • 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);
    					}
    				}
    			}
    }
    
  • 相关阅读:
    使用nodeJs安装Vue-cli
    Win10 下安装 NodeJS
    sublime Text 3 字体
    使用THINKPHP中的控制器和模块查询数据库
    Windows下PHP开发环境搭建
    在HTML中使用JS
    Python 网络编程介绍
    python 单例模式
    Python 元类
    Python 异常处理
  • 原文地址:https://www.cnblogs.com/haohj/p/10340504.html
Copyright © 2011-2022 走看看