Share via


Options.PathForPublications Property

Publisher Developer Reference

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).

Visual Basic for Applications
  Sub PubPath()
    Dim strPubPath
    strPubPath = Options.PathForPublications
    MsgBox strPubPath
End Sub

See Also