BlueScreen Property

Applies To

Options object.

Description

True if Word displays text as white characters on a blue background. Read/write Boolean.

See Also

FullScreen property, WPDocNavKeys property, WPHelp property.

Example

This example asks users whether they want white text on a blue background and presents Yes and No buttons for their response.

If MsgBox("Do you want white on blue?", 36, "BlueScreen?") = vbYes Then
    Options.BlueScreen = True
Else
    Options.BlueScreen = False
End If