SpreadJS Documentation
pictureStretch Method
The stretch of the picture.
Gets or sets the stretch of the picture.
Syntax
var instance = new GcSpread.Sheets.Picture(name, src, x, y, width, height);
var returnValue; // Type: Object
returnValue = instance.pictureStretch(value);
function pictureStretch( 
   value : ImageLayout
) : Object;

Parameters

value
The stretch of the picture.

Return Value

The stretch of the picture.
Example
This example uses the pictureStretch method.
activeSheet.addPicture("f2","Event.png",2,2,6,6);
var picture = activeSheet.findPicture("f2");
picture.pictureStretch(GcSpread.Sheets.ImageLayout.Center);
picture.backColor("Blue");
picture.borderWidth(2);
picture.borderColor("Red");
See Also

Reference

Picture type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.