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

Parameters

value
The offset relative to the end column of the shape.

Return Value

If no value is set, returns the offset relative to the end column of the shape.
Example
var heart = sheet.shapes.add("Shape1", GC.Spread.Sheets.Shapes.AutoShapeType.heart, 100, 60, 200, 160);
var n = heart.endColumnOffset();
heart.endColumnOffset(0);
See Also

Reference

ShapeBase type