VBA: Show or hide white space in outline view...

D

Doug Robbins - Word MVP

The following code will toggle the displya of white space

With ActiveWindow.View
If .DisplayPageBoundaries = True Then
.DisplayPageBoundaries = False
Else
.DisplayPageBoundaries = True
End If
End With


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP
 
G

Graham Mayor

Or even simpler

With ActiveWindow.View
.DisplayPageBoundaries = Not .DisplayPageBoundaries
End With

;)

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
A

Andrey Kazak

Thank you!

Graham Mayor said:
Or even simpler

With ActiveWindow.View
.DisplayPageBoundaries = Not .DisplayPageBoundaries
End With

;)

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Top