Previous Document Next Document
PrintPostScript.ResolveDCSLinks

Property ResolveDCSLinks As Boolean

Member of PrintPostScript

The ResolveDCSLinks property allows a Service Bureau to substitute high resolution images for the low resolution images in the file.

The following code example sets the MaintainOPILinks and ResolveDCSLinks properties to 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 

Previous Document Next Document Back to Top

Copyright 2007 Corel Corporation. All rights reserved.