iT邦幫忙

0

C# Spire.Doc for .NET 新增 .OLE

  • 分享至 

  • xImage

使用套件為Spire.Doc free

Document doc = new Document();
Section sec = doc.AddSection();
Paragraph p = sec.AddParagraph();
DocPicture picture = new DocPicture(doc);
Image image = Image.FromFile(@"XXXX.png");
picture.LoadImage(image);

DocOleObject obj = p.AppendOleObject(@"123.xlsx", picture, OleLinkType.Link);
doc.SaveToFile("添加OLE.docx");

如題 我想要新增 OLE 物件功能 doc to excel
但存檔後 點擊圖片不會跳出excel

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 個回答

0
JamesDoge
iT邦高手 1 級 ‧ 2022-12-22 08:14:22

點擊圖片不會跳出excel

如果您想要在點擊圖片時打開Excel文件,您可以使用Spire.Doc的Hyperlink類將圖片與Excel文件相關聯。

DocPicture picture = new DocPicture(doc);
Image image = Image.FromFile(@"XXXX.png");
picture.LoadImage(image);
picture.Hyperlink = new Hyperlink(@"123.xlsx", HyperlinkType.File);
p.AppendPicture(picture);

我要發表回答

立即登入回答