API Documentation > CorelDRAW > 2025-v26 > PrintOptions > IPrnVBAPrintOptions
PrintOptions.DriverInfo property
Specifies whether driver information should be printed on job information sheet
Syntax:
Property Get DriverInfo() As Boolean
Property Let DriverInfo(ByVal Value As Boolean)
Remarks:
The DriverInfo property specifies a Boolean (True or False) value that indicates whether driver-related and device-related information is printed on the information sheet for a print job.
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