height

Gets the rectangle height.

Example

<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>

Returns

Number The rectangle height.

In this article
height
Not finding the help you need?
Contact Support