WorkbookBase.FullName 屬性
取得物件名稱,包括其在磁碟上的路徑。
命名空間: Microsoft.Office.Tools.Excel
組件: Microsoft.Office.Tools.Excel.v4.0.Utilities (在 Microsoft.Office.Tools.Excel.v4.0.Utilities.dll 中)
語法
'宣告
Public ReadOnly Property FullName As String
public string FullName { get; }
屬性值
型別:System.String
物件名稱,包括其在磁碟上的路徑。
備註
此屬性相當於 Path 屬性,後面附有目前檔案的系統分隔符號,其後再附有 Name 屬性。
範例
下列程式碼範例使用 FullName 屬性,顯示活頁簿的完整名稱,包括其路徑。
這是示範文件層級自訂的範例。
Private Sub DisplayFullName()
MsgBox("The path and name of the current workbook is: " & _
Me.FullName)
End Sub
private void DisplayFullName()
{
MessageBox.Show("The path and name of the current workbook is: " +
this.FullName);
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。