SpreadJS Documentation
pageRange Method
The page numbers or page ranges separated by commas counting from the beginning of the document. For example, type "1,3,5-12".
Gets or sets the page range for printing.
Syntax
var instance = new GcSpread.Sheets.PrintInfo();
var returnValue; // Type: string
returnValue = instance.pageRange(value);
function pageRange( 
   value : string
) : string;

Parameters

value
The page numbers or page ranges separated by commas counting from the beginning of the document. For example, type "1,3,5-12".

Return Value

A string that provides page numbers or page ranges. The default value is an empty string.
Example
This example uses the pageRange 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.pageRange("1-3");
activeSheet.printInfo(printInfo);
spread.print(0);
   });
See Also

Reference

PrintInfo type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.