下面的代码将Word文档中的图像添加到图表中。
for (int i = 1; i <= wordDoc.InlineShapes.Count; i++) //loop on all images in Word document
{
object oLabel = ": " + imageName; //name of image to be inserted to table of figures
wordApp.ActiveDocument.InlineShapes[i].Select();
wordApp.Selection.InsertCaption(Microsoft.Office.Interop.Word.WdCaptionLabelID.wdCaptionFigure, ref oLabel, ref missing, ref missing, ref missing);
}
我想让用户通过数字表格导航 - 所以从图表中可以访问图像本身。
我认为将图像名称的标签更改为超链接可以完成这项工作,但是当尝试向InsertCaption()方法发送不同的参数时失败。
有什么想法吗?