如何复制 .doc 页面
我有一个单页的 Microsoft Word 文档。我需要制作更多页面是与第一页相同的文档。
I have a microsoft word document with single page. I need to make more pages is that document that is the same as first page.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果添加对 Microsoft Word 的引用,则可以使用 Microsoft.Office.Interop.Word 编辑和创建 Word 文档。复制页面的最简单方法可能是创建一个新文件,然后根据需要多次插入原始文件。
使用 Microsoft.Office.Interop.Word;
然后根据需要多次对原始文件使用 InsertFile。
If you add a reference to Microsoft Word, you can use Microsoft.Office.Interop.Word to edit and create word documents. The easiest way to copy pages is probably to create a new file and then insert the original file as many times as you need pages.
using Microsoft.Office.Interop.Word;
Then use InsertFile with your original file as many times as you need pages.