====== Print_SetFooter function ====== **Note: **Footer is limited to one line. @FM is not supported in the footer. DesciptionSets the page footer print and font. ==== Syntax ==== //status// = **Print_SetFooter**(//footertext//, //lines//, //font//) ==== Parameters ==== The Print_SetFooter function has the following parameters: ^Parameter^Description^ |footertext|Text for the footer.| |lines|Total number of lines to leave at bottom (including text in footer).| |font|Structure 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.| ==== Returns ==== True for successful execution or False for failure. ==== Example ==== * Sets the print footer. FontStruct = Utility( "CHOOSEFONT", @Window ) Print_SetFooter("This is the Footer", "", FontStruct) ** **