Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- CLIPWKS -Spreadsheet Library - <b>lfooter()</b> <b>printwks.prg</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
lfooter()                                                         PRINTWKS.PRG
------------------------------------------------------------------------------------------
 Purpose
   Write footer string into the spreadsheet

 Syntax
   Lfooter( aSpreadsheet,cFooting )

 Parameters
   aSpreadsheet   - Spreadsheet handle array
   cFooting       - Footer string

 Returns
   nStatus    0  All ok
             -6  Invalid parameters

 Notes
   The footer string appears on the bottom of each page whenever the
   spreadsheet is printed.  It may be up to 240 characters in length.
   Lfooter() is used to specify the footing string.

 Example
function main
    LOCAL aWks   := Lcreate("PAYROLL","L3")

    if !empty(aWks)
       Lheader(aWks,"GRUMPFISH, INC.")
       Lfooter(aWks,"For review only")
       Lclose(aWks)
    endif
return ""

 Category
   Creating spreadsheet files

See Also: Lheader()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson