您好,登錄后才能下訂單哦!
超鏈接簡(jiǎn)單來講就是內(nèi)容鏈接,通過設(shè)置超鏈接可以實(shí)現(xiàn)對(duì)象與網(wǎng)頁、站點(diǎn)之間的連接。鏈接目標(biāo)可以是網(wǎng)頁、圖片、郵件地址、文件夾或者是應(yīng)用程序。設(shè)置鏈接的對(duì)象可以是文本或者圖片。
在以下內(nèi)容中,我將介紹如何用C#編程語言對(duì)Word文檔中的文本和圖片進(jìn)行超鏈接設(shè)置。執(zhí)行該操作需要使用免費(fèi)版組件Spire.Doc for. NET,可在這里下載安裝(https://www.e-iceblue.cn/Downloads/Free-Spire-Doc-NET.html)
1.添加文本超鏈接
步驟一:創(chuàng)建一個(gè)Document實(shí)例并添加Section
Document doc = new Document(); Section section = doc.AddSection();
步驟二:添加指向網(wǎng)址的超鏈接
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, "點(diǎn)擊打開文檔", HyperlinkType.FileLink);
步驟五:設(shè)置段落之間的間距
para1.Format.AfterSpacing = 15f; para2.Format.AfterSpacing = 15f;
步驟六:保存文檔
doc.SaveToFile("文本超鏈接.docx", FileFormat.Docx2013);
完成操作步驟后,運(yùn)行該項(xiàng)目生成文件,如下圖所示:
2、添加圖片超鏈接
步驟一:創(chuàng)建一個(gè)Document實(shí)例并添加Section
Document doc = new Document(); Section section = doc.AddSection();
步驟二:添加段落
Paragraph para = section.AddParagraph();
步驟三:添加圖片到段落并添加網(wǎng)站超鏈接
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);
完成操作步驟,運(yùn)行程序得到如下文件:
總結(jié)
以上所述是小編給大家介紹的C# 添加Word文本和圖片超鏈接的方法,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)億速云網(wǎng)站的支持!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。