DEXT5 Editor :: Config :: Height

config.Height

에디터의 높이값을 설정합니다.

remarks

기본값은 "550px" 으로 설정됩니다.
필요시 DEXT5.config.Height = "높이값" 으로 설정합니다.

sample code

<script type="text/javascript" src="dext5/js/dext5editor.js"></script>	
 
<!-- ..... 생략 ..... -->
 
<div style="width:900px;height:550px">  
    <script type="text/javascript">

        // 에디터의 높이값을 650px 으로 설정합니다.
        DEXT5.config.Height = "650px";

        new Dext5editor("editor1");

    </script>       
</div>