ShapeRange.BlackWhiteMode Property

Publisher Developer Reference

Returns or sets an MsoBlackWhiteMode constant indicating how the specified shape or shape range appears when the publication is viewed in black-and-white mode. Read/write.

Syntax

expression.BlackWhiteMode

expression   A variable that represents a ShapeRange object.

Remarks

The BlackWhiteMode property value can be one of the MsoBlackWhiteMode constants declared in the Microsoft Office type library.

Example

This example sets the first shape in the active publication to appear in black-and-white mode. When you view the publication in black-and-white mode, the shape will appear black, regardless of what color it is in color mode.

Visual Basic for Applications
  ActiveDocument.Pages(1).Shapes(1).BlackWhiteMode = msoBlackWhiteBlack

See Also