SpreadJS Documentation
getOriginalWidth Method
Gets the original width of the picture.
Syntax
var instance = new GcSpread.Sheets.Picture(name, src, x, y, width, height);
var value; // Type: number
value = instance.getOriginalWidth();
function getOriginalWidth() : number;

Return Value

The original width of the picture.
Example
This example uses the getOriginalWidth method.
<input type="button" id="button1" value="button1"/>

activeSheet.addPicture("f2","Event.png",2,2,6,6);
activeSheet.addPicture("f1","tsoutline.png",3,0,6,6);
var picture = activeSheet.findPicture("f2");
picture.pictureStretch(GcSpread.Sheets.ImageLayout.Center);

$("#button1").click(function () {
alert(picture.getOriginalWidth());
    });
See Also

Reference

Picture type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.