C#實現添加Word文本與圖片超連結的方法

來源:互聯網
上載者:User
本文給大家介紹如何用C#程式設計語言對Word文檔中的文本和圖片進行超連結設定。感興趣的朋友一起看看吧

超連結簡單來講就是內容連結,通過設定超連結可以實現對象與網頁、網站之間的串連。連結目標可以是網頁、圖片、郵件地址、檔案夾或者是應用程式。設定連結的對象可以是文本或者圖片。

在以下內容中,我將介紹如何用C#程式設計語言對Word文檔中的文本和圖片進行超連結設定。執行該操作需要使用免費版組件Spire.Doc for. NET,可在這裡下載安裝(https://www.e-iceblue.cn/Downloads/Free-Spire-Doc-NET.html)

1.添加文本超連結

步驟一:建立一個Document執行個體並添加Section


Document doc = new Document();Section section = doc.AddSection();

步驟二:添加指向網址的超連結


Paragraph para1 = section.AddParagraph();para1.AppendHyperlink("www.google.com","www.google.com",HyperlinkType.WebLink);

步驟三:添加指向郵件地址的超連結


Paragraph para2 = section.AddParagraph();para2.AppendHyperlink("mailto:support@e-iceblue.com", "support@e-iceblue.com", HyperlinkType.EMailLink);

步驟四:添加指向外部檔案的超連結


Paragraph para3 = section.AddParagraph();string filePath = @"C:\Users\Administrator\Desktop\2017NobelPrize.docx";para3.AppendHyperlink(filePath, "點擊開啟文檔", HyperlinkType.FileLink);

步驟五:設定段落之間的間距


para1.Format.AfterSpacing = 15f;para2.Format.AfterSpacing = 15f;

步驟六:儲存文檔


doc.SaveToFile("文本超連結.docx", FileFormat.Docx2013);

完成操作步驟後,運行該項目組建檔案,如所示:

2、添加圖片超連結

步驟一:建立一個Document執行個體並添加Section


Document doc = new Document();Section section = doc.AddSection();

步驟二:添加段落


Paragraph para = section.AddParagraph();

步驟三:添加圖片到段落並添加網站超連結


Image image = Image.FromFile(@"C:\Users\Administrator\Desktop\images\Google.jpg");Spire.Doc.Fields.DocPicture picture = para.AppendPicture(image);para.AppendHyperlink("www.google.com", picture, HyperlinkType.WebLink);

步驟四:儲存文檔


doc.SaveToFile("圖片超連結.docx", FileFormat.Docx2013);

完成操作步驟,運行程式得到如下檔案:

總結

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.