Aspose.Words .NET如何实现文档合并的同页分页显示

当我们需要将一个文档添加到另一个文档时,经常会有不同的显示需求。为了文档的流畅,我们需要源文档和目标文档在内容上实现连续显示;而为了更好地区分文档,我们经常会希望两个文档的合并实现分页显示。

       下面,就让我们给出具体实例来对Aspose.Words .NET 的同页分页显示功能进行一个深入的了解:


一、同页连续显示


1、代码:

C#

Document dstDoc = new Document(gDataDir + "TestFile.Destination.doc");
Document srcDoc =  new Document(gDataDir + "TestFile.Source.doc");

// Make the document appear straight after the destination documents content.
srcDoc.FirstSection.PageSetup.SectionStart = SectionStart.Continuous;

// Append the source document using the original styles found in the source document.
dstDoc.AppendDocument(srcDoc, ImportFormatMode.KeepSourceFormatting);
dstDoc.Save(gDataDir + "TestFile.JoinContinuous Out.doc");

二、另起一页显示

1、代码:

C#

 Document dstDoc = new Document(gDataDir + "TestFile.Destination.doc");
Document srcDoc =  new Document(gDataDir + "TestFile.Source.doc");

// Set the appended document to start on a new page.
srcDoc.FirstSection.PageSetup.SectionStart = SectionStart.NewPage;

// Append the source document using the original styles found in the source document.
dstDoc.AppendDocument(srcDoc, ImportFormatMode.KeepSourceFormatting);
dstDoc.Save(gDataDir + "TestFile.JoinNewPage Out.doc");

原文地址:https://www.cnblogs.com/sxhlf/p/6709961.html