使用open xml将Excel链接[URL]添加到Excel单元格中的图像

时间:2016-07-29 18:08:23

标签: c# excel image openxml

我正在尝试使用AddExternalRelationship方法,但它不起作用, 我只想使用 openXML

添加链接到文件[我的文件在这种情况下是服务器上的图像]

1 个答案:

答案 0 :(得分:0)

使用AddHyperlinkRelationship

msdn文档中明确指出不使用AddExternalRelationship

参见: https://msdn.microsoft.com/en-us/library/office/cc562653.aspx

public HyperlinkRelationship AddHyperlinkRelationship(
    Uri hyperlinkUri,
    bool isExternal,
    string id
)