API Documentation > CorelDRAW > 2025-v26 > PrintOptions > IPrnVBAPrintOptions
PrintOptions.LinkInfo property
Specifies whether OPI link information should be printed on job information sheet
Syntax:
Property Get LinkInfo() As Boolean
Property Let LinkInfo(ByVal Value As Boolean)
Remarks:
The LinkInfo property specifies a Boolean (True or False) value that indicates whether to print information about images linked through Open Prepress Interface (OPI) on the information sheet for a print job.
Examples:
The following VBA example prints the job-information sheet with application information, driver information, and font information.
Sub Test()
Dim DrawPrintOptions As PrintOptions
Set DrawPrintOptions = ActiveDocument.PrintSettings.Options
With DrawPrintOptions
  .JobInformation = True
  .AppInfo = True
  .DriverInfo = True
  .PrintJobInfo = False
  .FontInfo = True
  .SepsInfo = False
End With
'print the document
ActiveDocument.PrintOut 
End Sub