PrintBGColor Property

Gets/Sets the flag that indicates whether to print background color or not when printing.


Type: Boolean

Remarks

N/A.

Example Usage


Set oPrinter = CreateObject("easyPDF.Printer.5")

Set oPrintJob = oPrinter.IEPrintJob
Set oIESetting = oPrintJob.IESetting

oIESetting.PrintBGColor = True
oIESetting.Save

oPrintJob.PrintOut "C:\input.htm", "C:\output.pdf"

 

 

<<