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");

  • 相关阅读:
    链接器之库文件处理
    Yii2.0数据库查询的一些简单的操作
    Yii rules常用规则
    yii2 session的使用方法
    curl实现发送Get和Post请求(PHP)
    Yii2.0登录详解(下)
    Yii2.0 用户登录详解(上)
    Linux终端最常用快捷键
    PHP5.6启动失败
    MySQL的外键是什么和它的作用
  • 原文地址:https://www.cnblogs.com/sxhlf/p/6709961.html
Copyright © 2011-2022 走看看