Object Model Reference : Classes : P : PrintOptions : Properties : PrintOptions.AppInfo |
Property AppInfo As Boolean
Member of PrintOptions
The AppInfo property determines whether to print application information on a job-information sheet.
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 |
Copyright 2013 Corel Corporation. All rights reserved.