Spread.Sheets Documentation
getOriginalHeight Method
GC.Spread.Sheets.FloatingObjects Namespace > Picture type : getOriginalHeight Method
Gets the original height of the picture.
Syntax
var instance = new GC.Spread.Sheets.FloatingObjects.Picture(name, src, x, y, width, height);
var value; // Type: number
value = instance.getOriginalHeight();
function getOriginalHeight() : number;

Return Value

The original height of the picture.
Example
This example uses the getOriginalHeight 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.getOriginalHeight());
    });
See Also

Reference

Picture type