The ResolveDCSLinks property specifies a Boolean (True or False) value that indicates whether to resolve Desktop Color Separation (DCS) 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