SpreadJS Documentation
startColumn Method
GC.Spread.Sheets.Shapes Namespace > ShapeBase type : startColumn Method
The starting column index of the shape position.
Gets or sets the starting column index of the shape position.
Syntax
var instance = new GC.Spread.Sheets.Shapes.ShapeBase();
var returnValue; // Type: any
returnValue = instance.startColumn(value);
function startColumn( 
   value : number
) : any;

Parameters

value
The starting column index of the shape position.

Return Value

If no value is set, returns the starting column index of the shape position.
Example
var heart = sheet.shapes.add("Shape1", GC.Spread.Sheets.Shapes.AutoShapeType.heart, 100, 60, 200, 160);
var n = heart.startColumn();
heart.startColumn(n + 2);
See Also

Reference

ShapeBase type