zoukankan      html  css  js  c++  java
  • 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");

  • 相关阅读:
    LCS(最长公共子序列)
    如何利用MAXScript代码进行DNA双螺旋结构的创建
    如何在3ds MAX中进行宏脚本MacroScript的编写
    3dsmax:[5]maxscript是干什么的
    Visual MAXScript 工具
    3D MAXScript(1)
    如何写3DMAX的插件
    利用GitHub for Window 来进行项目的上传
    VS中的库
    软件测试作业
  • 原文地址:https://www.cnblogs.com/sxhlf/p/6709961.html
Copyright © 2011-2022 走看看