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