Spread.Sheets Documentation
rowEnd Method
GC.Spread.Sheets.Print Namespace > PrintInfo type : rowEnd Method
The last row to print when printing a cell range.
Gets or sets the last row to print when printing a cell range.
Syntax
var instance = new GC.Spread.Sheets.Print.PrintInfo();
var returnValue; // Type: any
returnValue = instance.rowEnd(value);
function rowEnd( 
   value : number
) : any;

Parameters

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

Return Value

If no value is set, returns the last row to print when printing a cell range; otherwise, returns the print setting information.
Example
This example uses the rowEnd method.
activeSheet.setRowCount(5, GC.Spread.Sheets.SheetArea.viewport);
activeSheet.setColumnCount(5, 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.headerLeft("Header Left");
printInfo.rowStart(0);
printInfo.rowEnd(2);
spread.print(0);
   });
See Also

Reference

PrintInfo type