PowerPoint) (LinkFormat.AutoUpdate 屬性
會傳回或設定更新連結的方式。 可讀寫。
語法
運算式。AutoUpdate
表達 代表 LinkFormat 物件的 變數。
傳回值
PpUpdateOption
註解
AutoUpdate 屬性的值可以是下列其中一個 PpUpdateOption 常數。
常數 | 描述 |
---|---|
ppUpdateOptionAutomatic | 每次開啟簡報或變更來源檔案時,都會更新連結。 |
ppUpdateOptionManual | 只有當使用者特別要求更新簡報時,才會更新連結。 |
ppUpdateOptionMixed |
範例
這則範例會循環查看使用中簡報內所有投影片上的所有圖案,並將所有連結的 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
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。