如何复制 .doc 页面

发布于 2024-12-05 22:15:03 字数 53 浏览 1 评论 0原文

我有一个单页的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谁的年少不轻狂 2024-12-12 22:15:03

如果添加对 Microsoft Word 的引用,则可以使用 Microsoft.Office.Interop.Word 编辑和创建 Word 文档。复制页面的最简单方法可能是创建一个新文件,然后根据需要多次插入原始文件。
使用 Microsoft.Office.Interop.Word;

object missing = System.Reflection.Missing.Value;
object StartPoint = 0;

ApplicationClass WordApp = new ApplicationClass();
Document WordDoc = WordApp.Documents.Add(ref missing, ref missing, 
                                         ref missing, ref missing);
Range MyRange = WordDoc.Range(ref StartPoint, ref missing);

然后根据需要多次对原始文件使用 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;

object missing = System.Reflection.Missing.Value;
object StartPoint = 0;

ApplicationClass WordApp = new ApplicationClass();
Document WordDoc = WordApp.Documents.Add(ref missing, ref missing, 
                                         ref missing, ref missing);
Range MyRange = WordDoc.Range(ref StartPoint, ref missing);

Then use InsertFile with your original file as many times as you need pages.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文