This function is used to configure the Footer section for the PDF being generated using the ConvertToPDF rule. It allows you to define the content, height, background color, and a top line for the footer.
Syntax:
SetPDFFooter(Type, Value, Height, BackgroundColor(Optional), EnableTopLine(Optional), TopLineColor(Optional))
Where:
Examples:
SetPDFFooter(“HTML Content”, “<footer><small>© Your Company</small></footer>”, 50)
This sets a 50-pixel tall footer using inline HTML content.
SetPDFFooter(“File”, “ClientFiles/Documents/HTML/Footer.html”, 60, “#eeeeee”, “true”, “#999999”)
This sets the footer using file with background color, top line, and top line color.