Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
AI Productivity Tools
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
kendo.geometry.Size
The size of the rectangle.
<script> var geom = kendo.geometry; var rect = new geom.Rect([10, 10], [20, 30]); // Get the size var size = rect.size; console.log("Width:", size.width); // 20 console.log("Height:", size.height); // 30 </script>