在word中创建表格时,位于页面底部的表格如果超出页面边幅大小会自动跨页布局到下一页,此时表格行数据会断行。为保证文档布局的合理性及美观性,可设置表格是否禁止跨页断行。下面将通过spire.doc for java 来设置,分两种情况:
- 通过设置tableformat.isbreakacrosspages属性选择是否跨页断行
- 保持表格内容在同一页面
方法1:设置属性禁止跨页断行
import com.spire.doc.*;
public class preventpagebreak {
public static void main(string[]args){
//加载测试文档
document doc= new document("test.docx");
//获取表格
table table = doc.getsections().get(0).gettables().get(0);
//设置表格是否跨页断行
table.gettableformat().isbreakacrosspages(false);
//保存文档
doc.savetofile("result.docx",fileformat.docx_2013);
}
}
方法2:保持表格内容在同一页面
import com.spire.doc.*;
import com.spire.doc.documents.paragraph;
public class preventpagebreak {
public static void main(string[]args){
//加载测试文档
document doc= new document("test.docx");
//获取表格
table table = doc.getsections().get(0).gettables().get(0);
//遍历表格单元格
for (int i = 0;i< table.getrows().getcount();i ) {
tablerow rows = table.getrows().get(i);
for (int j = 0; j< rows.getcells().getcount(); j ){
for (int z= 0; z < rows.getcells().get(j).getparagraphs().getcount();z ){
paragraph p = rows.getcells().get(j).getparagraphs().get(z);
p.getformat().setkeepfollow(true);//设置表格内容在同一页显示
}
}
}
//保存文档
doc.savetofile("result1.docx",fileformat.docx_2013);
}
}