Previous Document Next Document
PrintSettings.UsePPD

Property UsePPD As Boolean

Member of PrintSettings

The UsePPD property determines whether a PPD (Postscript Printer Description) file is used. If set to True, the PPDFile property can be used to specify the name of the file.

The following code example prints the active document 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 

Previous Document Next Document Back to Top

Copyright 2007 Corel Corporation. All rights reserved.