Previous Document Next Document
PrintOptions.PrintJobInfo

Property PrintJobInfo As Boolean

Member of PrintOptions

The PrintJobInfo property determines whether information about the print job is printed on the job-information sheet.

The following code example prints the job-information sheet with application information, driver information, and font information:

Sub Test() 
 Dim DrawPrintOptions As PrintOptions 
 Set DrawPrintOptions = ActiveDocument.PrintSettings.Options 
 With DrawPrintOptions 
  .JobInformation = True 
  .AppInfo = True 
  .DriverInfo = True 
  .PrintJobInfo = False 
  .FontInfo = True 
  .SepsInfo = False 
 End With 
 'print the document 
 ActiveDocument.PrintOut 
End Sub 

Previous Document Next Document Back to Top

Copyright 2007 Corel Corporation. All rights reserved.