탭아이템의 text 폰트 정보를 설정하는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| strFontName | STRING | 폰트 이름 | 
| nFontSize | short | 폰트 사이즈 | 
| bFontBold | BOOL | 굵게(bold)효과 적용 여부 또는 폰트 굵기(font-weight) 값(100 ~ 900) | 
| bFontItalic | BOOL | 이탤릭체(Italic:기울어진체)효과 적용 여부 | 
| bFontUnderline | BOOL | 밑줄(underline)효과 적용 여부 | 
| Type | Description | 
|---|---|
| void | 없음 | 
function btn_settabitemfont_on_mouseup()
{
	tab.settabitemfont("바탕체", 11, true, true, true);
}