Path (Property)

Applies To:

Document object, PluginDocument object

Description:

Returns a string containing the full path and name of the document.

Note:

A plugin document name will be the temporary name and path of the document on the local file system. For information about Web server path, refer to the URL property.

Action:

Read-only, String

Example:

This example prints out the path information for all the open documents to the Console window:

for ( j = 1 ; j < = Documents.Count ; j++)\
     Console.Writeln( Documents[j].Name + is located on +Documents[j].Path)