True if character formatting is visible in outline view. Read/write Boolean.
expression.ShowFormat
expression Required. An expression that returns a View object.
This property generates an error if the view isn't outline or master document view.
This example switches the active window to outline view and shows character formatting.
With ActiveDocument.ActiveWindow.View
.Type = wdOutlineView
.ShowFormat = True
End With