The Options property returns a read-only value consisting of a PrintOptions object, which contains the print settings for a document.
Examples:
The following code example returns a reference to the PrintOptions object and displays the current color mode.
Sub Test()
Dim DrawPrnOptions As PrintOptions
Set DrawPrnOptions = ActiveDocument.PrintSettings.Options
With DrawPrnOptions
MsgBox "The current color mode is " & .ColorMode
End With
End Sub