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