SpreadJS Documentation
rowStart Method
The first row to print when printing a cell range.
Gets or sets the first row to print when printing a cell range.
Syntax
var instance = new GcSpread.Sheets.PrintInfo();
var returnValue; // Type: number
returnValue = instance.rowStart(value);
function rowStart( 
   value : number
) : number;

Parameters

value
The first row to print when printing a cell range.

Return Value

The row index of the first row to print when printing a cell range.
Example
This example uses the rowStart 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.rowStart(0);
printInfo.rowEnd(2);
spread.print(0);
   });
See Also

Reference

PrintInfo type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.