DEXT5 Editor :: Config :: UserFontFamily

config.UserFontFamily

에디터 로드 시 사용할 기본 폰트를 설정합니다.

remarks

기본 폰트는 "굴림" 입니다.

sample code

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

        // 에디터 기본 폰트를 맑은 고딕 으로 설정합니다.
        DEXT5.config.UserFontFamily = "맑은 고딕";

        new Dext5editor("editor1");

    </script>       
</div>