New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

getting height

To get the height of the editor, first get the editor's HTML element, then retrieve the style.height.

function onClientLoad(editor, args)
{
    alert('Editor height is: ' + editor.get_element().style.height); 
}   
In this article