Document.Path Property (2007 System)

Gets the disk or Web path of the document.

Namespace:  Microsoft.Office.Tools.Word
Assembly:  Microsoft.Office.Tools.Word.v9.0 (in Microsoft.Office.Tools.Word.v9.0.dll)

Syntax

'Declaration
Public ReadOnly Property Path As String
'Usage
Dim instance As Document 
Dim value As String 

value = instance.Path
public string Path { get; }
public:
property String^ Path {
    String^ get ();
}
public function get Path () : String

Property Value

Type: System.String
The disk or Web path of the document.

Remarks

The path does not include a trailing character—for example, "C:\MSOffice" or "http://MyServer". Use the PathSeparator property to add the character that separates folders and drive letters. Use the Name property to return the file name without the path and use the FullName property to return the file name and the path together.

Note

You can use the PathSeparator property to build Web addresses even though they contain forward slashes (/) and the PathSeparator property defaults to a backslash (\).

Examples

The following code example displays a message that shows the path of the document.

This example is for a document-level customization.

Private Sub DocumentPath()
    MessageBox.Show(Me.Path.ToString())
End Sub
private void DocumentPath()
{
    MessageBox.Show(this.Path.ToString());
}

.NET Framework Security

See Also

Reference

Document Class

Document Members

Microsoft.Office.Tools.Word Namespace