Previous Document Next Document

Object Model Reference : Classes : P : PrintPostScript : Properties : PrintPostScript.MaintainOPILinks


PrintPostScript.MaintainOPILinks

Property MaintainOPILinks As Boolean

Description

Member of PrintPostScript

The MaintainOPILinks property specifies whether to maintain Open Prepress Interface (OPI) links when distilling a PostScript file.

VBA example

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

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.