This example changes the magnification percentage of the window for Letter.doc so that the entire width of the text is visible.
With Windows("Letter.doc").View
.Type = wdNormalView
.Zoom.PageFit = wdPageFitBestFit
End With
This example switches the active window to print view and changes the magnification so that the entire page is visible.
With ActiveDocument.ActiveWindow.View
.Type = wdPrintView
.Zoom.PageFit = wdPageFitFullPage
End With