WD: How to Show/Hide Hidden Text |
Q132260
This article explains how to show or hide hidden text in your document
using the menu option or by using a macro.
NOTE: Word 5.x for the Macintosh had a Show Hidden Text command. This
command is no longer available in Word for the Macintosh and has not been
available in Word for Windows.
Use one of the following methods to show or hide hidden text in your document:
http://www.microsoft.com/partner/referral/For more information about the support options available from Microsoft, please see the following page on the World Wide Web:
http://support.microsoft.com/directory/overview.aspThe following WordBasic sample macro toggles hidden text on and off:
Sub Main
Dim dlg As ToolsOptionView
GetCurValues dlg
If dlg.Hidden = 1 ' If turned on,
dlg.Hidden = 0 ' turn it off,
Else
dlg.Hidden = 1 ' else turn it on.
End If
ToolsOptionsView dlg ' Force update.
End Sub
Additional query words:
Keywords : kbmacro kbprg kbui kbdtacode wordnt kbmacroexample ntword macword word6 word7 word95 kbformat
Issue type : kbhowto
Technology : kbWordSearch kbWordWSearch kbWordMSearch
|
Last Reviewed: December 29, 2000 © 2001 Microsoft Corporation. All rights reserved. Terms of Use. |