Previous Document Next Document
PrintPrepress.Mirror

Property Mirror As Boolean

Member of PrintPrepress

The Mirror property determines whether the film emulsion faces down.

The following code example prints the document with the emulsion facing up and then prints the document again with the emulsion facing down:

Sub Test() 
 With ActiveDocument 
  .PrintSettings.Prepress.Mirror = False 
  .PrintOut 
  .PrintSettings.Prepress.Mirror = True 
  .PrintOut 
 End With 
End Sub 

Previous Document Next Document Back to Top

Copyright 2007 Corel Corporation. All rights reserved.