Previous Document Next Document

Object Model Reference : Classes : D : Document : Methods : Document.PrintOut


Document.PrintOut

Sub PrintOut()

Description

Member of Document

The PrintOut method prints the document using the options set earlier using the PrintSettings object.

VBA example

The following VBA example prints the active document as separations.

Sub Test()
 With ActiveDocument.PrintSettings
  .Separations.Enabled = True
  .Separations.SpotToCMYK = True
  .Options.FountainSteps = 20
  .Prepress.InfoWithinPage = True
  .PostScript.Level = prnPSLevel1
 End With
 ActiveDocument.PrintOut
End Sub

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.