SpreadJS Documentation
useMax Method
Whether to print only rows and columns that contain data.
Gets or sets whether to print only rows and columns that contain data.
Syntax
var instance = new GcSpread.Sheets.PrintInfo();
var returnValue; // Type: boolean
returnValue = instance.useMax(value);
function useMax( 
   value : boolean
) : boolean;

Parameters

value
Whether to print only rows and columns that contain data.

Return Value

true if only rows and columns that contain data are to be printed; otherwise, false. The default value is true.
Example
This example uses the useMax 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.useMax(true);
spread.print(0);
   });
See Also

Reference

PrintInfo type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.