PrintCMYKByDefault Property.PrintCMYKByDefault Property

Publisher Developer ReferencePublisher Developer Reference

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

Syntax

expression.PrintCMYKByDefault

expression   A variable that represents a PrintCMYKByDefault Property object.

Return Value
Boolean

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.

Visual Basic for Applications
  ActiveDocument.AdvancedPrintOptions.PrintCMYKByDefault = True

See Also