Previous Document Next Document
Document.PrintSettings

Property PrintSettings As PrintSettings

Member of Document

The PrintSettings property returns a PrintSettings object that allows you to set different printing options for the document. Those options are used when printing out the document.

The PrintSettings property returns a read-only value.

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