我想知道有没有办法通过c#将图像添加到智能艺术中。到目前为止,通过谷歌搜索,我发现如何添加如下文字:
PowerPoint.Shape shape= oSlide.Shapes.AddSmartArt(oSlide.Application.SmartArtLayouts[3], 10, 125);
shape.SmartArt.Nodes[1].TextFrame2.TextRange.Text = "check";
但我不确定如何包含图片。
答案 0 :(得分:0)
ActivePresentation.Slides(2).Shapes(1).SmartArt.Nodes(2).Shapes(1).Fill.UserPicture"路径和文件名"
请参阅此link