Object Model Reference : Classes : P : PrintSettings : Properties : PrintSettings.Prepress |
Property Prepress As PrintPrepress
Member of PrintSettings
The Prepress property returns a PrintPrepress object, which represents prepress settings.
The Prepress property returns a read-only value.
The following VBA example prints the active document with page numbers displayed.
Sub Test() |
With ActiveDocument |
.PrintSettings.Prepress.PageNumbers = True |
.PrintSettings.Prepress.InfoWithinPage = True |
.PrintOut |
End With |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.