Hi empty,
The editor has not the setting to adjust the height as its parent control. You can adjust the height of editor when the user drop the splitter by the code below.
<script>
function adjustHeight()
{
var editor1=document.getElementById("<%= editor1.ClientID %>");
editor1.SetHeight(1000);
}
</script>
Regards,
Ken