Object Model Reference : Classes : P : PrintPostScript : Properties : PrintPostScript.pdfBookmarks |
Property pdfBookmarks As Boolean
Member of PrintPostScript
The pdfBookmarks property determines whether to include bookmarks when distilling a PostScript file into a PDF file.
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 |
Copyright 2013 Corel Corporation. All rights reserved.