API Documentation > CorelDRAW > 2025-v26 > PrintOptions > IPrnVBAPrintOptions
PrintOptions.PrintJobInfo property
Specifies whether document information should be printed on job information sheet
Syntax:
Property Get PrintJobInfo() As Boolean
Property Let PrintJobInfo(ByVal Value As Boolean)
Remarks:
The PrintJobInfo property specifies a Boolean (True or False) value that indicates whether information about a print job is printed as a job-information sheet.
Examples:
The following VBA 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