메뉴 버튼 다운시 글자색을 설정하는 API이다.
Parameters | Type | Description |
---|---|---|
clrFore | short | 글자색상 |
Type | Description |
---|---|
void | 없음 |
function btn_test_on_mouseup()
{
// 다운시 글자색 지정
menubtn.setforecolordownex(factory.rgb(0, 255, 0));
// 호버시 글자색 지정
menubtn.setforecolorhoverex(factory.rgb(255, 0, 0));
}