Object Model Reference : Classes : P : PrintPostScript : Properties : PrintPostScript.PDFStartup |
Property PDFStartup As PrnPDFStartup
Member of PrintPostScript
The PDFStartup property specifies the startup behavior for PDF files created from a PostScript 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.