View Single Post
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Turn off Magnifier in Word Print Preview by Default

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
Word MVP web site http://word.mvps.org


internation wrote:
Print Preview Magnifier

How do you turn this off so Magnifier is off by default?