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