ShowAll Property
From Microsoft Word Visual Basic
expression.ShowAll
expression Required. An expression that returns one of the objects in the Applies To list.
Example
This example displays all nonprinting characters in the active window.
ActiveDocument.ActiveWindow.View.ShowAll = True
This example toggles the display of nonprinting characters in the first window.
Windows(1).View.ShowAll = Not Windows(1).View.ShowAll