有人知道 PowerPoint 中学习 VBA 的网站吗?

发布于 2024-07-26 04:43:46 字数 1542 浏览 2 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

↙厌世 2024-08-02 04:43:46

寻找名字之类的
选择一个形状并逐步执行此宏,并突出显示或观察变量的值

Sub Shape_name()

Let x = ActiveWindow.Selection.ShapeRange(1).Name

Let y = ActiveWindow.Selection.ShapeRange(1).Type

Let Z = ActiveWindow .Selection.ShapeRange(1).Id

让 a = ActiveWindow.Selection.ShapeRange(1).OLEFormat.ProgID

让 b = ActiveWindow.Selection.ShapeRange(1).Height

让 c = ActiveWindow.Selection.ShapeRange(1).Width

设 D = ActiveWindow.Selection.ShapeRange(1).Left

设 E = ActiveWindow.Selection.ShapeRange(1).Top

End Sub

To find names and such
Select a shape and step through this macro and highlight or watch the variables for values

Sub Shape_name()

Let x = ActiveWindow.Selection.ShapeRange(1).Name

Let y = ActiveWindow.Selection.ShapeRange(1).Type

Let Z = ActiveWindow.Selection.ShapeRange(1).Id

Let a = ActiveWindow.Selection.ShapeRange(1).OLEFormat.ProgID

Let b = ActiveWindow.Selection.ShapeRange(1).Height

Let c = ActiveWindow.Selection.ShapeRange(1).Width

Let D = ActiveWindow.Selection.ShapeRange(1).Left

Let E = ActiveWindow.Selection.ShapeRange(1).Top

End Sub

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文