如何获得word文档的分页
本文关键字:分页 文档 word 何获得 | 更新日期: 2023-09-27 18:20:37
如何获取word文档的页面?我想从docx(或doc)文件中制作一个xml文件,格式如下:
<Page No="1">
<text>Text of page 1 here</text>
<footnote>text of footnote here</footnote>
</Page>
<Page No="2">
<text>Text of page 2 here</text>
<footnote>text of footnote here</footnote>
</Page>
感谢
refer如何使用Open XML从c#对Word文档进行分页更多
如果你能为它生成xml。
- 创建新的Word文档
- 设置寻呼
- 将文档保存为XML请参阅标记以进行分页。您可能会找到类似footer1.xml的内容
我认为这非常有用:http://www.shaunakelly.com/word/word-development/selecting-or-referring-to-a-page-in-the-word-object-model.html