Keeping MS Word Outline Sections Collapsed

D

Dave

Using Word Outline mode a lot.

Any way to keep sections "collapsed" you close / reopen a document ?

When I open a document - it expands the entire outline - would like
sections to remain collapsed

Thanks !
 
S

Stefan Blom

This cannot be done in the user interface, unfortunately. You could use a
macro. To simply show (say) Heading 1--Heading 3 paragraphs would be
straightforward:

Sub test()
ActiveWindow.View.Type = 2 ' Outline view
ActiveWindow.View.ShowHeading 3 ' Show levels 1--3 only
End Sub

But if you want something more advanced, you'd better ask in a programming
newsgroup.

--
Stefan Blom
Microsoft Word MVP


in message
news:[email protected]...
 
D

Dave

Stefan - thanks a lot for your response. I was hoping there'd be some
way for document to "remember" what sections were collapsed/open when
document is closed - and simply resume that structure when document is
re-opened.

Oh well, maybe I need to investigate a separate dedicated outlining
program.
 

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