SpreadJS Documentation
fitPagesWide Method
The number of horizontal pages to check when optimizing the printing.
Gets or sets the number of horizontal pages to check when optimizing the printing.
Syntax
var instance = new GcSpread.Sheets.PrintInfo();
var returnValue; // Type: number
returnValue = instance.fitPagesWide(value);
function fitPagesWide( 
   value : number
) : number;

Parameters

value
The number of horizontal pages to check when optimizing the printing.

Return Value

The number of horizontal pages to check.
Example
This example uses the fitPagesWide 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.fitPagesWide(1);
activeSheet.printInfo(printInfo);
spread.print(0);
   });
See Also

Reference

PrintInfo type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.