WD2000: How to Show/Hide Hidden Text
ID: Q198547
|
The information in this article applies to:
SUMMARY
This article explains how to show or hide any hidden text in your document.
MORE INFORMATION
Use one of the following methods to show or hide hidden text in your
document:
Method 1: Manually Switch Hidden Text Viewing
- On the Tools menu, click Options.
- Click the View tab.
- Under Formatting Marks, click to select or to clear the
Hidden Text check box.
- Click OK.
Method 2: Create a Macro to Turn Hidden Text On or Off
Microsoft provides programming examples for illustration only, without warranty
either expressed or implied, including, but not limited to, the implied warranties of
merchantability and/or fitness for a particular purpose. This article assumes that you
are familiar with the programming language being demonstrated and the tools used to
create and debug procedures. Microsoft support professionals can help explain the functionality
of a particular procedure, but they will not modify these examples to provide added
functionality or construct procedures to meet your specific needs. If you have limited
programming experience, you may want to contact a Microsoft Certified Solution Provider
or the Microsoft fee-based consulting line at (800) 936-5200. For more information about
Microsoft Certified Solution Providers, please see the following page on the World Wide Web:
http://www.microsoft.com/mcsp/
For more information about the support options available from Microsoft, please see the
following page on the World Wide Web:
http://www.microsoft.com/support/supportnet/refguide/
The following sample macro turns hidden text on and off.
Visual Basic for Applications Macro:
Sub ToggleShowHiddenText()
ActiveWindow.View.ShowHiddenText = Not _
ActiveWindow.View.ShowHiddenText
End Sub
Method 3: Use Show/Hide Button on Formatting Toolbar
The Show/Hide button on the Formatting toolbar turns on or off the All option for Formatting Marks on the View tab, under Options on the Tools menu.
NOTE: This command does not turn off any formatting marks options that have previously been individually selected.
For additional information about getting help with Visual Basic for
Applications, please see the following article in the Microsoft Knowledge
Base:
Q226118 OFF2000: Programming Resources for Visual Basic for Applications
Additional query words:
vb vbe vba
Keywords : kbdta
Version : WINDOWS:2000
Platform : WINDOWS
Issue type : kbhowto
Last Reviewed: June 15, 1999