Spread.Sheets Documentation
repeatColumnEnd Method
The last column of a range of columns to print on the left of each page.
Gets or sets the last column of a range of columns to print on the left of each page.
Syntax
var instance = new GC.Spread.Sheets.Print.PrintInfo();
var returnValue; // Type: any
returnValue = instance.repeatColumnEnd(value);
function repeatColumnEnd( 
   value : number
) : any;

Parameters

value
The last column of a range of columns to print on the left of each page.

Return Value

If no value is set, returns the last column of a range of columns to print on the left of each page; otherwise, returns the print setting information.
Example
This example uses the repeatColumnEnd 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.repeatColumnStart(0);
printInfo.repeatColumnEnd(2);
printInfo.repeatRowStart(0);
printInfo.repeatRowEnd(2);
spread.print();
   });
See Also

Reference

PrintInfo type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.