SpreadJS Documentation
footerLeft Method
The text and format of the left footer on printed pages.
Gets or sets the text and format of the left footer on printed pages.
Syntax
var instance = new GcSpread.Sheets.PrintInfo();
var returnValue; // Type: string
returnValue = instance.footerLeft(value);
function footerLeft( 
   value : string
) : string;

Parameters

value
The text and format of the left footer on printed pages.

Return Value

The text and format of the left footer for the printed pages of the report. The default value is an empty string, which means that no footers are printed.
Example
This example uses the footerLeft method.
activeSheet.setRowCount(3, GcSpread.Sheets.SheetArea.viewport);
activeSheet.setColumnCount(3, GcSpread.Sheets.SheetArea.viewport);

activeSheet.isPaintSuspended(true);
            //set value
            for (var r = 0, rc = activeSheet.getRowCount(); r < rc; r++) {
                for (var c = 0, cc = activeSheet.getColumnCount(); c < cc; c++) {
                    activeSheet.setValue(r, c, r + c);
                }
            }
activeSheet.isPaintSuspended(false);

$("#button1").click(function () {
var printInfo = activeSheet.printInfo();
printInfo.footerLeft("&BFooter");
activeSheet.printInfo(printInfo);
spread.print(0);
   });
See Also

Reference

PrintInfo type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.