Previous Document Next Document

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


PrintPostScript.ResolveDCSLinks

Property ResolveDCSLinks As Boolean

Description

Member of PrintPostScript

The ResolveDCSLinks property specifies whether to resolve Desktop Color Separation (DCS) 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.