See only Pagebreak Formatting mark

Z

zSplash

Is there a way to make it so that in View: printLayout I can see the
pagebreak formatting mark? (I don't want to "view" all the other marks that
become visible if I do Tools | Options | Formatting marks: All) I don't
want to change the view to Normal view.

TIA
 
L

Laura Townsend

Hi Tia,

Programmatically, this should do it:

Sub ViewParaMark()
With ActiveWindow.View
.ShowTabs = False
.ShowSpaces = False
.ShowParagraphs = True
.ShowHyphens = False
.ShowHiddenText = False
.ShowAll = False
.ShowObjectAnchors = False
.ShowTextBoundaries = False
End With
End Sub


You can set this without using VBA if you want.
Make sure Show/Hide is OFF (ctrl+shift+8 toggles it)
Then choose Tools, Options, View.
Check the Paragraph Marks check box.

Laura
 
D

Doug Robbins - Word MVP

Hi zSplash,

That's not possible. As there seems to be no reason that it should not be,
you might send a request for it to [email protected]

Please post any further questions or followup to the newsgroups for the
benefit of others who may be interested. Unsolicited questions forwarded
directly to me will only be answered on a paid consulting basis.

Hope this helps
Doug Robbins - Word MVP
 
Top