PrintCMYKByDefault Property

Microsoft Publisher Visual Basic

PrintCMYKByDefault Property

True to use composite CMYK as the default print mode for future Publisher instances, rather than composite RGB. Read/write boolean.

expression.PrintCMYKByDefault

expression    Required. An expression that returns a AdvancedPrintOptions object.

Remarks

Setting this property to True sets the default value of the PrintMode property for future instances of Publisher to pbPrintModeCompositCMYK. Setting this property does not apply to the current application of Publisher, or any open instances.

Use the PrintMode property of the AdvancedPrintOptions object to specify a publication's print mode. The default print mode value is pbPrintModeCompositeRGB.

This property corresponds to the Print Composite CMYK by default check box on the Separations tab of the Advanced Print Settings dialog box.

Example

The following example sets the default print mode of future instances of Publisher to composite CMYK.

    ActiveDocument.AdvancedPrintOptions.PrintCMYKByDefault = True