API Documentation > CorelDRAW > 2025-v26 > PrintPostScript > IPrnVBAPrintPostScript
PrintPostScript.PDFHyperlinks property
Specifies whether hyperlinks should be included for PDF files created from the generated PostScript
Syntax:
Property Get PDFHyperlinks() As Boolean
Property Let PDFHyperlinks(ByVal Value As Boolean)
Remarks:
The PDFHyperlinks property returns or specifies a Boolean (True or False) value that indicates whether to include hyperlinks when distilling a PostScript file to PDF.
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