Object Model Reference : Classes : P : PrintSettings : Properties : PrintSettings.Options |
Property Options As PrintOptions
Member of PrintSettings
The Options property returns a PrintOptions object, which specifies various print settings.
The Options property returns a read-only value.
The following VBA 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 |
Copyright 2013 Corel Corporation. All rights reserved.