Turn off Magnifier in Word Print Preview by Default

  • Thread starter Thread starter Guest
  • Start date Start date
You can intercept the print preview command with a macro to set the
magnifier off and the zoom level eg

Sub FilePrintPreview()
PrintPreview = True
With ActiveDocument.ActiveWindow.View
.Magnifier = False
.Zoom.Percentage = 100
End With
End Sub

http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Thanks Graham!!!

Graham Mayor said:
You can intercept the print preview command with a macro to set the
magnifier off and the zoom level eg

Sub FilePrintPreview()
PrintPreview = True
With ActiveDocument.ActiveWindow.View
.Magnifier = False
.Zoom.Percentage = 100
End With
End Sub

http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Back
Top