Share via


DocumentWindow.BlackAndWhite Property

PowerPoint Developer Reference

Determines whether the document window display is black and white. Read/write.

Syntax

expression.BlackAndWhite

expression   A variable that represents a DocumentWindow object.

Return Value
MsoTriState

Remarks

The value of the BlackAndWhite property can be one of these MsoTriState constants.

Constant Description
msoFalse The default. The document window display is not black and white.
msoTrue The document window display is black and white.

Example

This example changes the display in window one to black and white.

Visual Basic for Applications
  Application.Windows(1).BlackAndWhite = msoTrue

See Also