如何在c#中使用open XML在excel中插入超链接

时间:2015-02-16 09:50:54

标签: c# excel openxml spreadsheetml

如何使用C#在Excel中插入超链接?我尝试了这个,但它不起作用

WorksheetPart workSheetPartss = new WorksheetPart();

 workSheetPartss.AddHyperlinkRelationship(new Uri("http://www.google.com", UriKind.Absolute), true);

 Excel.SetCellValue(spreadsheet, worksheet, k, i + 1,  workSheetPartss.Uri.ToString(), true);

1 个答案:

答案 0 :(得分:1)

这是我能找到的唯一真正的逐步参考。希望它可以帮助您创建超链接。

https://ankushbhatia.wordpress.com/2011/03/04/how-to-insert-a-hyperlink-in-excel-using-open-xml-sdk-2-0/