Examples:
The following VBA example saves the current value of the ConformToDSC property and specifies it as True. After it prints the document, it restores the saved value.
Sub Test()
Dim bConformToDSC As Boolean
'save current value
With ActiveDocument.PrintSettings.PostScript
bConformToDSC = .ConformToDSC
'set new value
.ConformToDSC = True
End With
'print document
ActiveDocument.PrintOut
'restore saved value
With ActiveDocument.PrintSettings.PostScript
.ConformToDSC = bConformToDSC
End With
End Sub