使用Aspose字在多页中显示表头

时间:2016-07-05 11:17:39

标签: java aspose aspose.words

目前,我正在使用Java中的Aspose Words导出报告。我正在使用动态数据填充表,但我的主要问题是当数据到达下一页时导出的文档中没有标题。如何获取导出文件中所有页面的标题。任何建议将不胜感激。

2 个答案:

答案 0 :(得分:1)

我们可以通过以下方式在 JAVA 中解决此问题:

1.加载文件

Document doc =  new Document(getMyDir() + "Table.SimpleTable.doc");

2.获取第一张表

Table table = doc.getChild(NodeType.TABLE, 0, true); //i.e. second   parenthesis as index of table in doc file

3。获取用于表格标题的行

Row rows = (Row) table.getRows().get(0);//we can set multiple rows as heading by passing it's index

4。将行设置为 HeadingFormat = true

rows.getRowFormat().setHeadingFormat(true);

答案 1 :(得分:0)

  1. 选择要在模板中重复的标题部分(行/行)。
  2. 右键单击它。转到表格属性并选择行选项卡,其中第二个选项为“重复每页顶部的标题行”。