WorkbookBase.FullNameURLEncoded Property

Definition

Gets the name of the object, including its path on disk.

public string FullNameURLEncoded { get; }

Property Value

String

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

Applies to