且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Powerpoint编辑如何将一种形状从一张幻灯片复制到另一张幻灯片

更新时间:2023-02-14 08:25:57

在vba中,您可以这样做:

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

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

复制幻灯片2上的第三个形状到幻灯片3

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