Object Model Reference : Classes : P : PrintPrepress : Properties : PrintPrepress.Mirror |
Property Mirror As Boolean
Member of PrintPrepress
The Mirror property determines whether the film emulsion faces down.
The following VBA 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 |
Copyright 2013 Corel Corporation. All rights reserved.