PowerPoint 幻灯片中的变量
如何在 PowerPoint 2007 中跨幻灯片访问变量?我尝试过:
Slide42.myvar = 1
有没有办法声明一个可以从所有幻灯片访问的“全局”变量?
How can I make a variable accessible across slides in PowerPoint 2007? I tried:
Slide42.myvar = 1
Is there any way to declare a "global" variable that can be accessed from all slides?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要让变量出现在所有幻灯片中,您需要将其声明为
Public
或Global
。将模块添加到幻灯片并将其声明为:要将模块添加到幻灯片,请在 VBA 编辑器中,确保您的演示文稿在左侧窗格中突出显示。然后,从菜单栏中选择“插入”、“模块”,将新的代码模块插入到您的项目中。您可以在那里进行变量声明。
To have your variable across all slides, you need to declare it as
Public
orGlobal
. You add a module to your slide and declare it as:To add a module to your slide, In the VBA editor, make sure that your presentation is highlighted in the left-hand pane. Then, choose Insert, Module from the menu bar to insert a new code module into your project. You can have your variable declarations there.