The UsePPD property specifies a Boolean (True or False) value that indicates whether a Postscript Printer Description (PPD) file is used. If a value of True is specified, the PrintSettings.PPDFile property can be used to specify the name of the file.
Examples:
The following VBA example prints the active document by using the specified PPD file.
Sub Test()
With ActiveDocument.PrintSettings
.UsePPD = True
.PPDFile = "C:\WINNT4\system32\spool\drivers\w32x86\HPLJ5P_1.PPD"
End With
ActiveDocument.PrintOut
End Sub