멀티라인이 disable 상태일때 글자색을 설정하는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| clrFore | COLOR | 글자색상 | 
| bImportant | BOOL | [옵션] CSS 색상에 important 적용 여부 (기본값: false) | 
| Type | Description | 
|---|---|
| void | 없음 | 
function btn_setdisablefore_on_mouseup()
{
	// disable시에도 글자색이 검은색으로 보이도록 변경
	multiline.setdisableforecolor(factory.rgb(0, 0, 0));
}