Footer Property

Gets/Sets footer string.

Type

String

Remarks

This property modifies Internet Explorer's footer setting. For the supported footer command, refer to Internet Explorer help.

Example Usage

' VB sample code

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

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

' Remove IE's default footer
oIESetting.Footer = ""
oIESetting.Save

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