Document.FullName 屬性 (Publisher)
會傳回代表儲存使用中出版物,包括它的路徑和檔案名稱的完整檔案名稱的 字串 。 唯讀。
語法
運算式。FullName
表達 代表 Document 物件的變數。
傳回值
字串
註解
FullName屬性可用來傳回 Path 和 Name 屬性所傳回的路徑和檔名。
範例
下列範例會示範 路徑 、 名稱 、 與 FullName 屬性之間的差異。 本範例會最說明如果出版物儲存在非預設資料夾。
Sub PathNames()
Dim strPath As String
Dim strName As String
Dim strFullName As String
strPath = Application.ActiveDocument.Path
strName = Application.ActiveDocument.Name
strFullName = Application.ActiveDocument.FullName
' Note the file name & path differences
' while executing.
MsgBox "The path is: " & strPath
MsgBox "The file name is: " & strName
MsgBox "The path & file name are: " & strFullName
End Sub
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。