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


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top