Zooming the View to Display Multiple Pages : Document View « Word « VBA / Excel / Access / Word






Zooming the View to Display Multiple Pages

 
Sub zoom()
    With Documents("Sample.doc").Windows(1).View
        .Type = wdPrintView
        With .Zoom
            .PageColumns = 3
            .PageRows = 2
        End With
    End With
End Sub

 








Related examples in the same category

1.changes the view for Sample.doc to Print Layout view
2.Change the document view to wdMasterView
3.Change the document view to normal view
4.Change the document view to print view
5.change the document view to reading view
6.change the document view to wdWebView