Change page setup on all pages

K

Kath

I have a 67 page document. i want to change the page size within page
setup on all the pages at once, but can't figure out how. It would
seem I have to go to each page and do it individually. Any
workarounds?

thanks
 
M

Mark Nelson [MS]

You could write a macro to do it:

Dim Page as Visio.Page
For Each Page in ActiveDocument.Pages
Page.Pagesheet.Cells("PageWidth").ResultIU = 8.5
Page.Pagesheet.Cells("PageHeight").ResultIU = 11
Next
 

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