SpreadJS Documentation
footerCenterImage Method
The image for the center section of the footer.
Gets or sets the image for the center section of the footer.
Syntax
var instance = new GcSpread.Sheets.PrintInfo();
var returnValue; // Type: string
returnValue = instance.footerCenterImage(value);
function footerCenterImage( 
   value : string
) : string;

Parameters

value
The image for the center section of the footer.

Return Value

The image for the center portion of the printed footer. The default value is empty string, which means that no image is specified.
Example
This example uses the footerCenterImage 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.footerCenterImage("logo.jpg");
activeSheet.printInfo(printInfo);
spread.print(0);
   });
See Also

Reference

PrintInfo type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.