New to Telerik UI for ASP.NET AJAX? Start a 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.
JavaScript
function onClientLoad(editor, args)
{
alert('Editor height is: ' + editor.get_element().style.height);
}