메뉴버튼 박스가 숨김 상태에서 호버시 메뉴버튼의 보더 색상을 설정하는 API이다.
Parameters | Type | Description |
---|---|---|
nRValue | short | Red 값(0~255) |
nGValue | short | Green 값(0~255) |
nBValue | short | Blue 값(0~255) |
Type | Description |
---|---|
void | 없음 |
function btn_test_on_mouseup()
{
// 보더 컬러 변경
menubtn.setbordercolor(factory.rgb(0, 0, 255));
// 호버시 보더 컬러 변경
menubtn.setbordercolorhover(255,0,0);
}