超鏈接簡(jiǎn)單來(lái)講就是內(nèi)容鏈接,通過(guò)設(shè)置超鏈接可以實(shí)現(xiàn)對(duì)象與網(wǎng)頁(yè)、站點(diǎn)之間的連接。鏈接目標(biāo)可以是網(wǎng)頁(yè)、圖片、郵件地址、文件夾或者是應(yīng)用程序。設(shè)置鏈接的對(duì)象可以是文本或者圖片。
伊寧ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書未來(lái)市場(chǎng)廣闊!成為創(chuàng)新互聯(lián)的ssl證書銷售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:028-86922220(備注:SSL證書合作)期待與您的合作!
在以下內(nèi)容中,我將介紹如何用C#編程語(yǔ)言對(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 = newDocument(); 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)擊打開(kāi)文檔", HyperlinkType.FileLink);
步驟五:設(shè)置段落之間的間距
para1.Format.AfterSpacing = 15f; para2.Format.AfterSpacing= 15f;
步驟六:保存文檔
doc.SaveToFile("文本超鏈接.docx", FileFormat.Docx2013);
2.添加圖片超鏈接
步驟一:創(chuàng)建一個(gè)Document實(shí)例并添加section
Document doc = newDocument(); Section section =doc.AddSection();
步驟二:添加段落
Paragraph para = section.AddParagraph();
步驟三:添加圖片到段落并插入網(wǎng)站鏈接
Image p_w_picpath = Image.FromFile(@"C:\Users\Administrator\Desktop\p_w_picpaths\Google.jpg"); Spire.Doc.Fields.DocPicture picture =para.AppendPicture(p_w_picpath); para.AppendHyperlink("www.google.com", picture, HyperlinkType.WebLink);
步驟四:保存文檔
doc.SaveToFile("圖片超鏈接.docx", FileFormat.Docx2013);
以上是利用C#編程語(yǔ)言對(duì)如何添加文本及圖片超鏈接的代碼操作演示,希望上述方法對(duì)你有所幫助,感謝閱讀!