New to Kendo UI for jQueryStart a free 30-day trial

Height

methods

Gets the rectangle height.

Returns:Number

The rectangle height.

<script>
var geom = kendo.geometry;
var rect = new geom.Rect([10, 20], [25, 35]);

// Get the height
var height = rect.height();

console.log("Rectangle height:", height); // 35
console.log("Same as size height:", height === rect.size.height); // true
</script>
Not finding the help you need?
Contact Support