Visio VBA 访问宏源
我需要使用 VBA 从 Visio 文档中获取宏文本。是否有任何集合、属性等可以访问 Visio 文档的宏?
I need to get Macros text from the Visio document using VBA. Is there any collection, property etc to access to the macros of the Visio document?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以访问文档的 VBA 项目中的代码,假设该文档已解锁以供查看,并且 Visio 安装安全设置允许以编程方式访问 VBA 项目。
如果您有一个名为 Doc 的文档变量,则它将是 Doc.VBProject
如果您在引用中启用了 Microsoft Visual Basic for Applications 扩展性库,您可以将变量调暗为 VBProject 并获取智能感知来帮助您弄清楚如何获取您想要的内容。需要。
You can access the code in the VBA project for a document, assuming it's unlocked for viewing and the Visio installation security settings allows programmatic access to the VBA project.
If you have a document variable called Doc, it would be Doc.VBProject
If you enable the Microsoft Visual Basic for Applications Extensibility library in the references, you can dim a variable as VBProject and get intellisense to help you figure out how to get what you need.