API Documentation > CorelDRAW > 2025-v26 > PrintPostScript > IPrnVBAPrintPostScript
PrintPostScript.MaintainOPILinks property
Specifies whether OPI links should be maintained in the generated PostScript
Syntax:
Property Get MaintainOPILinks() As Boolean
Property Let MaintainOPILinks(ByVal Value As Boolean)
Remarks:
The MaintainOPILinks property returns or specifies a Boolean (True or False) value that indicates whether to maintain Open Prepress Interface (OPI) links when distilling a PostScript file.
Examples:
The following VBA example specifies the MaintainOPILinks and ResolveDCSLinks properties as True and prints the document to a file.
Sub Test()
With ActiveDocument
  .PrintSettings.PostScript.MaintainOPILinks = True
  .PrintSettings.PostScript.ResolveDCSLinks = True
  .PrintSettings.FileName = "c:\Temp.ps"
  .PrintSettings.PrintToFile = True
  .PrintOut
End With 
End Sub