Previous Document Next Document

Object Model Reference : Classes : P : PrintSettings : Properties : PrintSettings.Prepress


PrintSettings.Prepress

Property Prepress As PrintPrepress

Description

Member of PrintSettings

The Prepress property returns a PrintPrepress object, which represents prepress settings.

The Prepress property returns a read-only value.

VBA example

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

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.