【发布时间】:2014-12-23 07:23:51
【问题描述】:
我已将一些超链接(图像)添加到 Excel 文件(.xls 2003)中。 我正在使用 Microsoft.Office.Interop.Excel 参考来阅读此超链接的地址。 但它不会显示为图像的完整路径位置,而只会显示名称(例如 image1.jpg)。
这就是我的做法。 以下三个语句处于循环中。
object index = (object)i;
Microsoft.Office.Interop.Excel.Hyperlink link = links.get_Item(index);
Debug.WriteLine(link.Address);
【问题讨论】:
-
请添加您的代码
标签: c# excel excel-2003