Previous Document Next Document
PrintSettings.Prepress

Property Prepress As PrintPrepress

Member of PrintSettings

The Prepress property returns a PrintPrepress object that represents the prepress settings.

The Prepress property returns a read-only value.

The following code example prints the active document with page numbers within the page:

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 2007 Corel Corporation. All rights reserved.