PowerPoint) (LinkFormat.SourceFullName 屬性
會傳回或設定已連結 OLE 物件之來源檔案的名稱及路徑。 讀取/寫入。
語法
expression。 SourceFullName
表達 代表 LinkFormat 物件的 變數。
傳回值
字串
範例
本範例會將作用中的簡報中,第一張投影片上第一個圖案的來源檔案設定為 Wordtest.doc,並且指定會自動更新物件的圖像。
With ActivePresentation.Slides(1).Shapes(1)
If .Type = msoLinkedOLEObject Then
With .LinkFormat
.SourceFullName = "c:\my documents\wordtest.doc"
.AutoUpdate = ppUpdateOptionAutomatic
End With
End If
End With
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。