Word处理控件Aspose.Words功能演示:使用C#分割MS Word文档
MS Word文档被广泛用于保存和共享信息。在某些情况下,可能需要从可能位于不同部分或页面的Word文档中拆分数据。另外,还可能需要将单个文档的页面拆分为多个文档。
根据这种情况,在本文中,将展示如何使用C#以编程方式拆分MS Word文档。让我们继续学习以下用例:
- 使用C#按部分拆分Word文档
- 使用C#逐页拆分Word文档
- 使用页面范围使用C#拆分Word文档
>>Aspose.Words for .NET已经更新至v20.8,此常规的每月版本中有81项改进和修复,主要特点包括实现了Markdown的“内嵌图片”功能、为字体名称处理添加了新的字体替换规则等三大新功能。
使用C#按部分拆分Word文档
部分是指文档中可以应用不同格式的部分。一个部分可以由一个页面,一个页面范围或整个文档组成。分节符用于将文档拆分为多个部分。以下是使用Aspose.Words for .NET根据文档的部分拆分Word文档的步骤。
- 使用Document类加载Word文档。
- 使用Document.Sections属性循环浏览页面部分。
- 将节克隆到新的Section对象中。
- 创建一个新的Document对象。
- 使用Document.Sections.Add(Section)方法将该部分添加到新的Document中。
- 使用Document.Save(String)方法保存文档。
下面的代码示例演示如何使用C#按部分拆分MS Word文档。
// Open a Word document Document doc = new Document("document.docx"); for (int i = 0; i < doc.Sections.Count; i++) { // Split a document into smaller parts, in this instance split by section Section section = doc.Sections[i].Clone(); // Create a new document Document newDoc = new Document(); newDoc.Sections.Clear(); Section newSection = (Section)newDoc.ImportNode(section, true); newDoc.Sections.Add(newSection); // Save each section as a separate document newDoc.Save($"splitted_{i}.docx"); }
使用C#逐页拆分Word文档
在某些情况下,Word文档在每页上都包含类似类型的信息,例如发票或收据。在这种情况下,可以拆分文档的页面,以便将每个发票另存为单独的文档。若要逐页拆分文档,可以使用 基于Aspose.Words for .NET 的帮助程序类DocumentPageSplitter。可以按照以下步骤简单地在项目中复制该类并逐页拆分Word文档。
- 使用Document类加载Word文档。
- 创建一个DocumentPageSplitter类的对象,并使用Document对象对其进行初始化。
- 遍历文档页面。
- 使用DocumentPageSplitter.GetDocumentOfPage(int PageIndex)方法将每个页面提取到一个新的Document对象中。
- 使用Document.Save(String)方法保存每个文档。
下面的代码示例演示如何使用C#按页面拆分Word文档。
// Open a Word document Document doc = new Document("Document.docx"); // Create and initialize the document page splitter DocumentPageSplitter splitter = new DocumentPageSplitter(doc); // Save each page as a separate document for (int page = 1; page <= doc.PageCount; page++) { Document pageDoc = splitter.GetDocumentOfPage(page); pageDoc.Save($"spliteed_{page}.docx"); }
使用C#按页面范围拆分Word文档
还可以使用DocumentPageSplitter 类指定页面范围以将其与原始文档分开。例如,如果需要将页面从2拆分为4,只需在DocumentPageSplitter.GetDocumentOfPageRange(int StartIndex,int EndIndex)方法中指定起始页和结束页的索引即可。
下面的代码示例演示如何使用C#从Word文档中拆分页面范围。
// Open a Word document Document doc = new Document("document.docx"); // Create and initialize document page splitter DocumentPageSplitter splitter = new DocumentPageSplitter(doc); // Get the page range Document pageDoc = splitter.GetDocumentOfPageRange(3, 6); pageDoc.Save("splitted.docx");
还想要更多吗?您可以点击阅读【2020 · Aspose最新资源整合】,查找需要的教程资源。如果您有任何疑问或需求,请随时加入Aspose技术交流群(642018183),我们很高兴为您提供查询和咨询。