• <menu id="w2i4a"></menu>
  • logo E-iceblue中文文檔

    文檔首頁>>E-iceblue中文文檔>>將文本分成兩列并在它們之間添加行

    將文本分成兩列并在它們之間添加行


    列被廣泛用于設置頁面布局,它可以將文本分成兩列或多列,以便文本可以在同一頁面上從一列流到下一列。使用 Spire.Doc,我們可以實現(xiàn)此功能并同時在列之間添加一條線。本文將介紹如何將文本拆分為兩列并在它們之間添加行。

    Spire.Doc for.NET 最新下載

    注意:請下載最新版本的 Spire.Doc 并添加 Spire.Doc .dll 作為 Visual Studio 的參考。

    第 1 步:創(chuàng)建一個新文檔并從文件加載

    Document document = new Document();
    document.LoadFromFile("S.docx");

    步驟 2:在第一節(jié)添加一列,設置列寬和列間距。這里我們將寬度設置為 100f,間距設置為 20f。

    document.Sections[0].AddColumn(100f, 20f);
    document.Sections[0].AddColumn(100f, 20f);

    第 3 步:在兩列之間添加一條線

    document.Sections[0].PageSetup.ColumnsLineBetween = true;

    第 4 步:保存文件并啟動查看效果

    document.SaveToFile("result.docx",FileFormat.docx2013);
    System.Diagnostics.Process.Start("result.docx");

    添加列之前:

    如何將文本分成兩列并在它們之間添加行

    效果

    如何將文本分成兩列并在它們之間添加行

    完整代碼:

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using Spire.Doc;
    
    namespace Column
    {
    class Program
    {
    static void Main(string[] args)
    {
    Document document = new Document();
    
    document.LoadFromFile("S.docx");
    
    document.Sections[0].AddColumn(100f, 20f);
    
    document.Sections[0].PageSetup.ColumnsLineBetween = true;
    
    document.SaveToFile("result.docx",FileFormat.docx2013);
    System.Diagnostics.Process.Start("result.docx");
    
    }
    }
    }
    
    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    023-68661681

    TOP
    三级成人熟女影院,欧美午夜成人精品视频,亚洲国产成人乱色在线观看,色中色成人论坛 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();