我将发布商文档用作模板。
如何从文件插入图像代替“?”图像。
可能与MS Word的方式相同,但我找不到。
我以这种方式访问该模板:
using Publisher = Microsoft.Office.Interop.Publisher;
Publisher._Application pubApp = new Publisher.Application();
Publisher.Document doc = pubApp.Open(docPath);
Publisher.Page templateCard = doc.Pages[1];
答案 0 :(得分:1)
基本上:
shape.PictureFormat.Replace(filePath);
找到我的模板图像的最佳方法我想到的是为我的图像设置替代文字,然后查看它:
foreach (Publisher.Shape shape in currenPage.Shapes) {
if (shape.AlternativeText == "DICKBUTT")
//here you do your stuff
}