Поделиться через


Options.PathForPublications Property (Publisher)

Returns a String that represents the default folder for publications. Read.

Syntax

expression .PathForPublications

expression A variable that represents a Options object.

Return Value

String

Example

This example returns the current default path for publications (corresponds to the default path setting on the General tab in the Options dialog box, Tools menu).

Sub PubPath() 
 Dim strPubPath 
 strPubPath = Options.PathForPublications 
 MsgBox strPubPath 
End Sub