Object Model Reference : Classes : P : PrintPostScript : Properties : PrintPostScript.MaintainOPILinks |
Property MaintainOPILinks As Boolean
Member of PrintPostScript
The MaintainOPILinks property specifies whether to maintain Open Prepress Interface (OPI) links when distilling a PostScript file.
The following VBA example sets the MaintainOPILinks and ResolveDCSLinks properties to True and prints the document to 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 |
Copyright 2013 Corel Corporation. All rights reserved.