API Documentation > CorelDRAW > 2025-v26 > PrintPostScript > IPrnVBAPrintPostScript
PrintPostScript.PDFStartup property
Specifies the startup behavior for PDF files created from the generated PostScript
Syntax:
Property Get PDFStartup() As PrnPDFStartup
Property Let PDFStartup(ByVal Value As PrnPDFStartup)
Remarks:
The PDFStartup property specifies, through PrnPDFStartup, the startup behavior for a PDF file created from a PostScript file.
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