Examples:
The following VBA example sets the options for distilling a PostScript file into a PDF file. The resulting PDF file displays document outlines on startup and contains hyperlinks and bookmarks.
Sub TestPDF()
With ActiveDocument.PrintSettings.PostScript
.PDFStartup = prnPDFOutlines
.PDFBookmarks = True
.PDFHyperlinks = True
End With
End Sub