SpreadJS Documentation
GC.Spread.Sheets.Print Namespace / PrintInfo type / footerRightImage Method
The image for the right section of the footer.
In This Topic
    footerRightImage Method
    In This Topic
    Gets or sets the image for the right section of the footer.
    Syntax
    var instance = new GC.Spread.Sheets.Print.PrintInfo();
    var returnValue; // Type: any
    returnValue = instance.footerRightImage(value);
    function footerRightImage( 
       value : string
    ) : any;

    Parameters

    value
    The image for the right section of the footer.

    Return Value

    If no value is set, returns the image for the right section of the footer; otherwise, returns the print setting information.
    Example
    This example creates a right footer.
    activeSheet.setRowCount(3, GC.Spread.Sheets.SheetArea.viewport);
    activeSheet.setColumnCount(3, GC.Spread.Sheets.SheetArea.viewport);
    
    activeSheet.suspendPaint();
                //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.resumePaint();
    
    $("#button1").click(function () {
    var printInfo = new GC.Spread.Sheets.Print.PrintInfo();
    printInfo.footerRight("&G");
    printInfo.footerRightImage("logo.jpg");
    activeSheet.printInfo(printInfo);
    spread.print(0);
       });
    See Also

    Reference

    PrintInfo type