컨트롤의 글자색을 설정하는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| nRValue | short | Red 값(0~255) | 
| nGValue | short | Green 값(0~255) | 
| nBValue | short | Blue 값(0~255) | 
| Type | Description | 
|---|---|
| void | 없음 | 
**데이트피커의 fore_color 속성 설정한 것과 동일한 기능을 한다.
function btnsetforecolor_on_mouseup()
{
	datepicker.setforecolor(0, 255, 0);
	// 글자색초록색지정
}