Examples:
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