컨트롤의 글자색을 설정하는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| clrFore | COLOR | 글자색상 | 
| Type | Description | 
|---|---|
| void | 
function btn_setforecolorex_on_mouseup()
{
	// txtTest2의 글자색을 txtTest 글자색과 같게 변경한다.
	var clrFore = txtTest.getforecolor();
	txtTest2.setforecolorex(clrFore);
}