ShowFormat Property
Applies To
View object.
Description
True if character formatting is visible in outline view. Read/write Boolean.
Note This property generates an error if the view isn't outline view or master document view.
See Also
Draft property, ShowFirstLineOnly property.
Example
This example switches the active window to outline view and shows character formatting.
With ActiveWindow.View
.Type = wdOutlineView
.ShowFormat = True
End With