OLEFormat 对象 (PowerPoint)
包含应用于 OLE 对象的属性和方法。
备注
LinkFormat 对象包含的属性和方法应用于链接 OLE 对象。 PictureFormat 对象包含的属性和方法应用于图片和 OLE 对象。
示例
使用 OLEFormat 属性返回一个 OLEFormat 对象。 下面的示例循环访问当前演示文稿的所有幻灯片上的所有形状,并设置所有链接的 Microsoft Excel 工作表进行手动更新。
For Each sld In ActivePresentation.Slides
For Each sh In sld.Shapes
If sh.Type = msoLinkedOLEObject Then
If sh.OLEFormat.ProgID = "Excel.Sheet" Then
sh.LinkFormat.AutoUpdate = ppUpdateOptionManual
End If
End If
Next
Next
方法
名称 |
---|
Activate |
DoVerb |
属性
名称 |
---|
Application |
FollowColors |
对象 |
ObjectVerbs |
Parent |
ProgID |
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。