Previous Document Next Document

Object Model Reference : Classes : P : PrintPrepress : Properties : PrintPrepress.Mirror


PrintPrepress.Mirror

Property Mirror As Boolean

Description

Member of PrintPrepress

The Mirror property determines whether the film emulsion faces down.

VBA example

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

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.