The Enabled property specifies a Boolean (True or False) value that indicates whether print trapping is turned on.
Examples:
The following VBA example displays the current status of print trapping and displays the Print dialog box.
Sub Test()
With ActiveDocument.PrintSettings
With .Trapping
If .Enabled = True Then
MsgBox "Print trapping is currently enabled"
Else
MsgBox "Print trapping is currently disabled"
End If
End With
.ShowDialog
End With
End Sub