WorkbookBase.FullNameURLEncoded Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the name of the object, including its path on disk.
public:
property System::String ^ FullNameURLEncoded { System::String ^ get(); };
public string FullNameURLEncoded { get; }
member this.FullNameURLEncoded : string
Public ReadOnly Property FullNameURLEncoded As String
Property Value
The name of the object, including its path on disk.
Remarks
The following code example uses the FullNameURLEncoded property to display the full name of the workbook, including its path, encoded as a URL.
This example is for a document-level customization.
private void DisplayFullNameURLEncoded()
{
MessageBox.Show("The path and name of the current workbook is: " +
this.FullNameURLEncoded);
}
Private Sub DisplayFullNameURLEncoded()
MsgBox("The path and name of the current workbook is: " & _
Me.FullNameURLEncoded)
End Sub