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

Parameters

value
The offset relative to the start row of the shape.

Return Value

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

Reference

ShapeBase type