API Documentation > CorelDRAW > 2025-v26 > PrintSettings > IPrnVBAPrintSettings
PrintSettings.Prepress property
Specifies the prepress settings
Syntax:
Property Get Prepress() As PrintPrepress
Remarks:
The Prepress property returns a read-only PrintPrepress object, which represents the prepress settings of the print engine.
Examples:
The following VBA 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