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

    文檔首頁>>E-iceblue中文文檔>>將新段落插入到 Word 文檔中

    將新段落插入到 Word 文檔中


    Spire.Doc for .NET是一款專門對 Word 文檔進行操作的 .NET 類庫。在于幫助開發(fā)人員無需安裝 Microsoft Word情況下,輕松快捷高效地創(chuàng)建、編輯、轉(zhuǎn)換和打印 Microsoft Word 文檔。擁有近10年專業(yè)開發(fā)經(jīng)驗Spire系列辦公文檔開發(fā)工具,專注于創(chuàng)建、編輯、轉(zhuǎn)換和打印Word/PDF/Excel等格式文件處理,小巧便捷。 

    E-iceblue 功能類庫Spire 系列文檔處理組件均由中國本土團隊研發(fā),不依賴第三方軟件,不受其他國家的技術(shù)或法律法規(guī)限制,同時適配國產(chǎn)操作系統(tǒng)如中科方德、中標(biāo)麒麟等,兼容國產(chǎn)文檔處理軟件 WPS(如 .wps/.et/.dps 等格式

    Spire.Doc for.NET 最新下載

    借助 Spire.Doc,開發(fā)人員可以輕松地將多個 word 文檔合并為一個 word 文檔。合并文檔后,您可能需要插入注釋或新段落以添加一些描述。本文解釋并描述了如何使用 Spire.Doc 在 C# 中的現(xiàn)有 word 文檔中插入新段落。

    下面的示例演示如何將段落插入到文檔中。

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

    Document document = new Document();
    document.LoadFromFile("sample.docx", FileFormat.Docx);

    第 2 步:附加文本并設(shè)置字體格式。

    Paragraph paraInserted = new Paragraph(document);
    TextRange textRange1 = paraInserted.AppendText("This is a inserted paragraph, I want to insert this paragraph in the start of document.");
    textRange1.CharacterFormat.TextColor = Color.Blue;
    textRange1.CharacterFormat.FontSize = 15;
    textRange1.CharacterFormat.UnderlineStyle = UnderlineStyle.Dash;

    第 3 步:插入新段落。

    document.Sections[0].Paragraphs.Insert(0, paraInserted);

    第 4 步:將文檔保存到文件中。

    document.SaveToFile("result.docx", FileFormat.Docx);

    有效截圖

    How to insert a new paragraph to word document in C#

    完整代碼

    using Spire.Doc;
    using Spire.Doc.Documents;
    using Spire.Doc.Fields;
    using System.Drawing;
    namespace InsertParagh
    {
    class Program
    {
    
    static void Main(string[] args)
    {
    Document document = new Document();
    document.LoadFromFile("sample.docx", FileFormat.Docx);
    
    Paragraph paraInserted = document.Sections[0].AddParagraph();
    TextRange textRange1 = paraInserted.AppendText("This is a inserted paragraph, I want to insert this paragraph in the start of document.");
    textRange1.CharacterFormat.TextColor = Color.Blue;
    textRange1.CharacterFormat.FontSize = 15;
    textRange1.CharacterFormat.UnderlineStyle = UnderlineStyle.Dash;
    
    document.Sections[0].Paragraphs.Insert(0, document.Sections[0].Paragraphs[document.Sections[0].Paragraphs.Count - 1]);
    
    document.SaveToFile("result.docx", FileFormat.Docx);
    }
    }
    }

    歡迎下載|體驗更多E-iceblue產(chǎn)品

    獲取更多信息請咨詢慧都在線客服  ;技術(shù)交流Q群(767755948)


    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    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); })();