如果该属性值为 True,则 Word 将在蓝色背景上以白色字符显示文本。Boolean 类型,可读写。
本示例询问用户是否将文档窗口设为蓝底白字,并提供了“是”和“否”两个按钮来响应。
If MsgBox("Do you want white on blue?", 36, _
"BlueScreen?") = vbYes Then
Options.BlueScreen = True
Else
Options.BlueScreen = False
End If