Sets the page footer print and font.

status = Print_SetFooter(footertext, lines, font)

The Print_SetFooter function has the following parameters:

ParameterDescription
footertextText for the footer.
linesTotal number of lines to leave at bottom (including text in footer).
fontStructure of the font as returned by Utility ("CHOOSEFONT").

Note: \PAGE will print the current page number. This can be used in conjunction with any of the printer functions.

True for successful execution or False for failure.

* Sets the print footer.
FontStruct = Utility( "CHOOSEFONT", @Window )
Print_SetFooter("This is the Footer", "", FontStruct)
  • No labels