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

Parameters

value
The first column to print when printing a cell range.

Return Value

If no value is set, returns the first column to print when printing a cell range; otherwise, returns the print setting information.
Example
This example uses the columnStart method.
activeSheet.setRowCount(3, GC.Spread.Sheets.SheetArea.viewport);
activeSheet.setColumnCount(3, 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.columnStart(0);
printInfo.columnEnd(2);
printInfo.centering(GC.Spread.Sheets.Print.PrintCentering.horizontal);
activeSheet.printInfo(printInfo);
spread.print(0);
   });
See Also

Reference

PrintInfo type