Specifies the PostScript level to use
Syntax:
Property Get Level() As PrnPostScriptLevel
Property Let Level(ByVal Value As PrnPostScriptLevel)
Remarks:
The Level property returns or specifies, as PrnPostScriptLevel, the PostScript level.
Examples:
The following VBA example displays the current PostScript level.
Sub Test()
MsgBox "The current PostScript level is level " & _
  ActiveDocument.PrintSettings.PostScript.Level 
End Sub