View.ShowAll Property

Word Developer Reference

True if all nonprinting characters (such as hidden text, tab marks, space marks, and paragraph marks) are displayed. Read/write Boolean.

Syntax

expression.ShowAll

expression   Required. A variable that represents a View object.

Example

This example displays all nonprinting characters in the active window.

Visual Basic for Applications
  ActiveDocument.ActiveWindow.View.ShowAll = True

This example toggles the display of nonprinting characters in the first window.

Visual Basic for Applications
  Windows(1).View.ShowAll = Not Windows(1).View.ShowAll

See Also