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