使用套件為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
點擊圖片不會跳出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);