Object Model Reference : Classes : P : PrintSettings : Properties : PrintSettings.PostScript |
Property PostScript As PrintPostScript
Member of PrintSettings
The PostScript property returns a PrintPostScript object, which represents the PostScript print settings of the CorelDRAW print engine.
The PostScript property returns a read-only value.
The following VBA example displays the PostScript level of the current PostScript device.
Sub Test() |
Dim DrwPostScriptSettings As PrintPostScript |
Set DrwPostScriptSettings = ActiveDocument.PrintSettings.PostScript |
With DrwPostScriptSettings |
MsgBox "The current printing device is a PostScript level " & _ |
.Level & " device." |
End With |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.