Powerpoint editing how to copy one shape from one slide to another

前端 未结 1 1209
走了就别回头了
走了就别回头了 2021-01-23 05:05

I\'m a newbie in c# programming and I\'m just confounded by the entire ms office library. I want to copy a textbox from one slide 3 and paste it in slide 2. I followed instructi

相关标签:
1条回答
  • 2021-01-23 05:16

    In vba it, you'd do it like this:

    ActivePresentation.Slides(2).Shapes(3).Copy
    ActivePresentation.Slides(3).Shapes.Paste
    

    This'd copy the third shape on slide 2 to slide 3

    0 讨论(0)
提交回复
热议问题