SpreadJS Documentation
repeatRowEnd Method
The last row of a range of rows to print at the top of each page.
Gets or sets the last row of a range of rows to print at the top of each page.
Syntax
var instance = new GcSpread.Sheets.PrintInfo();
var returnValue; // Type: number
returnValue = instance.repeatRowEnd(value);
function repeatRowEnd( 
   value : number
) : number;

Parameters

value
The last row of a range of rows to print at the top of each page.

Return Value

The row index for the last row of a range of rows to print at the top of each page.
Example
This example uses the repeatRowEnd method.
activeSheet.setRowCount(5, GcSpread.Sheets.SheetArea.viewport);
activeSheet.setColumnCount(5, 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.headerLeft("Header Left");
printInfo.repeatColumnStart(0);
printInfo.repeatColumnEnd(2);
printInfo.repeatRowStart(0);
printInfo.repeatRowEnd(2);
spread.print();
   });
See Also

Reference

PrintInfo type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.