ShowHiddenText Property

Applies To

View object.

Description

True if text formatted as hidden text is displayed. Read/write Boolean.

See Also

Hidden property, ShowAll property.

Example

This example hides text formatted as hidden text in each window.

For Each myWindow In Windows
    myWindow.View.ShowHiddenText = False
Next myWindow
This example toggles the display of hidden text.

ActiveWindow.View.ShowHiddenText = Not ActiveWindow.View.ShowHiddenText