Spread.Sheets Documentation
getOriginalWidth Method
GC.Spread.Sheets.FloatingObjects Namespace > Picture type : getOriginalWidth Method
Gets the original width of the picture.
Syntax
var instance = new GC.Spread.Sheets.FloatingObjects.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.pictures.add("f2","Event.png",2,2,6,6);
activeSheet.pictures.add("f1","tsoutline.png",3,0,6,6);
var picture = activeSheet.pictures.get("f2");
picture.pictureStretch(GC.Spread.Sheets.ImageLayout.center);

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

Reference

Picture type