91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#添加、讀取Word腳注尾注的方法

發布時間:2020-08-31 13:05:03 來源:腳本之家 閱讀:185 作者:E-iceblue 欄目:編程語言

本文實例為大家分享了C#添加讀取Word腳注尾注的具體代碼,供大家參考,具體內容如下

腳注和尾注是對文本的補充說明。腳注一般位于頁面的底部,可以作為文檔某處內容的注釋;尾注一般位于文檔的末尾,列出引文 的出處等。在本示例中將介紹如何來添加或刪除Word腳注。

工具使用: Free Spire. Doc for .NET(免費版)

第一步:dll引用

C#添加、讀取Word腳注尾注的方法

第二步:添加Word腳注、尾注

【C#】

using Spire.Doc;
using Spire.Doc.Documents;
using Spire.Doc.Fields;
using System.Drawing;

namespace InsertFootnote_Doc
{
 class Program
 {
 static void Main(string[] args)
 {
  //新建一個word文檔對象并加載需要添加腳注尾注的word文檔
  Document document = new Document();
  document.LoadFromFile("sample.docx", FileFormat.Docx2010);

  //獲取第3個段落
  Paragraph paragraph = document.Sections[0].Paragraphs[2];

  //添加腳注
  Footnote footnote = paragraph.AppendFootnote(FootnoteType.Footnote);

  //在第一段里查找指定字符串,并添加腳注
  DocumentObject obj = null;

  for (int i = 0; i < paragraph.ChildObjects.Count; i++)
  {
  obj = paragraph.ChildObjects[i];
  if (obj.DocumentObjectType == DocumentObjectType.TextRange)
  {
   TextRange textRange = obj as TextRange;

   if (textRange.Text == "中國——東盟自貿區框架")
   {
   //為添加腳注的字符串設置加粗格式
   textRange.CharacterFormat.Bold = true;
   //插入腳注
   paragraph.ChildObjects.Insert(i + 1, footnote);
   break;
   }
  }
  }

  //添加腳注內容被設置字體格式
  TextRange text = footnote.TextBody.AddParagraph().AppendText("2002年11月4日,朱镕基總理和東盟10國領導人共同簽署了《中國-東盟全面經濟合作框架協議》,這標志著中國與東盟的經貿合作進入了一個新的歷史階段。");
  text.CharacterFormat.FontName = "Arial Black";
  text.CharacterFormat.FontSize = 9;
  text.CharacterFormat.TextColor = Color.DarkGray;
  footnote.MarkerCharacterFormat.FontName = "Calibri";
  footnote.MarkerCharacterFormat.FontSize = 12;
  footnote.MarkerCharacterFormat.Bold = true;
  footnote.MarkerCharacterFormat.TextColor = Color.DarkGreen;


  //獲取第5段落
  Paragraph paragraph3 = document.Sections[0].Paragraphs[4];

  //添加尾注并設置尾注和格式
  Footnote endnote = paragraph3.AppendFootnote(FootnoteType.Endnote);

  TextRange text2 = endnote.TextBody.AddParagraph().AppendText("黨的十七大報告明確指出:"
  +"“堅持對外開放的基本國策,把‘引進來'和‘走出去'更好地結合起來,"
  +"擴大開放領域,優化開放結構,提高開放質量,完善內外聯動,"
  +"互利共贏、安全高效的開放型經濟體系,形成經濟全球化條件下參與國際經濟合作和競爭的新優勢。");
  text2.CharacterFormat.FontName = "Arial Black";
  text2.CharacterFormat.FontSize = 9;
  text2.CharacterFormat.TextColor = Color.Black;
  endnote.MarkerCharacterFormat.FontName = "Calibri";
  endnote.MarkerCharacterFormat.FontSize = 12;
  endnote.MarkerCharacterFormat.Bold = false;
  endnote.MarkerCharacterFormat.TextColor = Color.DarkGreen;

  //保存并打開文檔
  document.SaveToFile("添加腳注尾注.docx", FileFormat.Docx2010);
  System.Diagnostics.Process.Start("添加腳注尾注.docx");
 }
 }
}

測試結果:

C#添加、讀取Word腳注尾注的方法

第三步 :讀取腳注/尾注

【C#】

//創建Document類對象,加載需要測試的文檔
  Document document = new Document();
  document.LoadFromFile("添加腳注尾注.docx");
  //獲取文檔第一個section
  Section section = document.Sections[0];

  //實例化StringBuilder類 
  StringBuilder sb = new StringBuilder();

  //遍歷文檔中所有段落
  foreach (Paragraph paragraph in section.Paragraphs)
  {
  for (int i = 0, cnt = paragraph.ChildObjects.Count; i < cnt; i++)
  {
   ParagraphBase pBase = paragraph.ChildObjects[i] as ParagraphBase;
   if (pBase is Footnote)
   {
   //若需要讀取尾注,將此處FootnoteType.Footnote改成 FootnoteType.Endnote即可
   if ((pBase as Footnote).FootnoteType == FootnoteType.Footnote)
   {
    foreach (Paragraph footPara in (pBase as Footnote).TextBody.Paragraphs)
    {
    sb.Append(footPara.Text);
    }
   }
   }
  }
  }
//將讀取內容寫入文本并保存
File.WriteAllText("FootNotes.txt", sb.ToString());
//打開文檔
System.Diagnostics.Process.Start("FootNotes.txt");

讀取結果:

腳注讀取結果:

C#添加、讀取Word腳注尾注的方法

尾注讀取結果:

C#添加、讀取Word腳注尾注的方法

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

齐河县| 新竹市| 横山县| 乌鲁木齐市| 肃宁县| 正安县| 青州市| 贡山| 龙门县| 青阳县| 高尔夫| 东明县| 察隅县| 南陵县| 乌苏市| 抚松县| 石门县| 山阳县| 吉木乃县| 顺平县| 闵行区| 蓬莱市| 新沂市| 永新县| 珲春市| 临桂县| 米林县| 安宁市| 水城县| 新密市| 柳河县| 中宁县| 梁平县| 凉城县| 资阳市| 会同县| 富阳市| 曲麻莱县| 新安县| 曲靖市| 邯郸县|