VBA:如何将图表复制到Powerpoint中选定的“插入图表字段”中

时间:2018-08-02 07:32:48

标签: excel excel-vba powerpoint

我知道如何将图形从Excel复制到PowerPoint中,这很好。 Powerpoint提供了附加功能,您可以使用带有预定义标题和内容字段的幻灯片(例如“ ... slides.Add(1,8)”)。您可以右键单击内容字段,单击图片符号,它将自动使内容适合该字段。

我的问题如下。选择字段后,如何使用VBA正确粘贴?

  PowerPointApp.Activate
  Set mySlide = myPresentation.slides.Add(1, 8) 
  mySlide.Shapes(2).Select
  'How to paste into this shape?

感谢您的支持。

0 个答案:

没有答案