Is there a way programatically to toggle the Show and Hide hidden text?
If your hidden text has a style you could try something like: Sub ToggleHiddenText() Dim sStyle As String sStyle = "Normal" If ActiveDocument.Styles(sStyle).Font.Hidden = True Then ActiveDocument.Styles(sStyle).Font.Hidden = False Else ActiveDocument.Styles(sStyle).Font.Hidden = True End If End Sub "Jim@aol.com" wrote: > Is there a way programatically to toggle the Show and Hide hidden > text? >
Or even simpler Sub ToggleHidden() With ActiveWindow.View .ShowHiddenText = Not .ShowHiddenText End With End Sub -- <>>< ><<> ><<> <>>< ><<> <>>< <>><<> Graham Mayor - Word MVP My web site www.gmayor.com Word MVP web site http://word.mvps.org <>>< ><<> ><<> <>>< ><<> <>>< <>><<> Jim@aol.com wrote: > Is there a way programatically to toggle the Show and Hide hidden > text?