Document.FullName 属性 (Publisher)
返回一个 字符串 ,表示已保存的当前出版物,包括其路径和文件名的文件的完整名称。 此为只读属性。
语法
表达式。FullName
表达 一个代表 Document 对象的变量。
返回值
String
备注
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 支持和反馈,获取有关如何接收支持和提供反馈的指南。