K Editor :: Config :: FontFamilyList

FontFamilyList

에디터 기본 글꼴 메뉴에 노출할 폰트 리스트를 설정합니다.

remarks

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

sample code

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

        var paramObj = {
            Id: 'editor1',          
            // 에디터 메뉴에 노출할 폰트를 맑은고딕, Tahoma 로 설정합니다.
            FontFamilyList: '맑은고딕,Tahoma'  
        };
        
        new RAONKEditor(paramObj);

    </script>       
</div>