Master.Hyperlinks 属性 (PowerPoint)
返回表示指定幻灯片中的所有超链接的 超链接 集合。 此为只读属性。
语法
表达式。链接
表达 一个代表 Master 对象的变量。
返回值
Hyperlinks
示例
以下示例允许用户更新当前演示文稿中所有超链接中已过时的 Internet 地址。
oldAddr = InputBox("Old Internet address")
newAddr = InputBox("New Internet address")
For Each s In ActivePresentation.Slides
For Each h In s.Hyperlinks
If LCase(h.Address) = oldAddr Then h.Address = newAddr
Next
Next
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。