GcSpread.Sheets Namespace > Picture type : pictureStretch Method |
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;
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");