如何在PowerPoint加载项中获取形状的绝对位置?
我正在使用 C# 为 MS PowerPoint 编写插件。 当演示文稿运行时,我需要在屏幕坐标中获取每个 PPT 形状的位置。 如何获得?
我有演示文稿查看器窗口的位置,并且有相对于幻灯片左上角的形状位置。但我没有相对于演示查看器的幻灯片位置。
I'm writing plugin for MS PowerPoint using C#.
I need to get position each PPT shape in screen coordinates when presentation is running.
How it can be obtained?
I have position of presentation viewer window and have shape position relative to top-left corner of the slide. But I haven't position of the slide relative to pesentation viewer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每个形状的 .Top、.Left、.Height 和 .Width 属性将告诉您形状相对于 PPT 幻灯片大小的位置和大小。
下面的几个问题有一些关于获取当前幻灯片放映窗口的屏幕坐标的建议。
在双-监视器系统,找出 PowerPoint 幻灯片在哪个监视器上显示
一旦您掌握了这两个位,剩下的就应该是简单的比率计算了。
Each shape's .Top, .Left, .Height and .Width properties will tell you the position and size of the shape relative to the size of the PPT slide.
A few questions down there are some suggestions for getting the screen coordinates of the current slide show window.
In a dual-monitor system, finding out on which monitor a PowerPoint slideshow is displayed
Once you have both of those bits, the rest should be a simple ratio calculation.