DEXT5 Editor :: Config :: FrameFullScreen

config.FrameFullScreen

프레임일 경우 풀 스크린 아이콘 버튼 사용여부를 설정합니다.

remarks

기본값은 "0" 이고, "1" 로 설정 시 프레임일 경우 풀 스크린 아이콘 버튼을 보여줍니다.

sample code

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

        // 풀 스크린 아이콘 버튼 사용으로 설정합니다.
        DEXT5.config.FrameFullScreen = "1";

        new Dext5editor("editor1");

    </script>       
</div>