API Documentation > CorelDRAW > 2025-v26 > PrintPostScript > IPrnVBAPrintPostScript
PrintPostScript.ResolveDCSLinks property
Specifies whether DCS links should be resolved in the generated PostScript
Syntax:
Property Get ResolveDCSLinks() As Boolean
Property Let ResolveDCSLinks(ByVal Value As Boolean)
Remarks:
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