View Single Post
  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Set the default outlining level display in Word 2007

You could intercept the command with a macro saved in the normal template eg

Sub ViewOutline()
With ActiveWindow
.ActivePane.View.Type = wdOutlineView
.View.ShowHeading 2
End With
End Sub

which will show up to level 2 - change 2 to 3 for levels 1 2 and 3

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org


Rudy wrote:
When I switch to Outline view, the default shows all the lines of the
text.

I'd like by default to show only the Level 2 headers.

Or Level 1, 2, and 3.

This used to work in Word 2003, but I can't make it work in Word 2007.