如何在 VBA 中将形状从一个 Powerpoint 演示文稿复制到另一个 Powerpoint 演示文稿?
我有 VBA 代码,可以将符合特定条件的形状从一个 Powerpoint 演示文稿复制到下面的另一个演示文稿。但是,当粘贴形状时,它会从原始位置偏移(向下和向右)。如何在保持原始坐标的同时复制形状?
sourceShape.Copy
Presentations(2).Windows(1).Activate
ActivePresentation.Slides(x).Shapes.Paste (1)
I have VBA code to copy shapes matching a certain criteria from one Powerpoint presentation to another below. However, when it pastes the shape, it is offset (down and to the right) from the original position. How can I copy a shape while maintaining the original coordinates?
sourceShape.Copy
Presentations(2).Windows(1).Activate
ActivePresentation.Slides(x).Shapes.Paste (1)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许简单地说:
Perhaps simply: