토글버튼 위에 마우스 커서가 위치할 때 호출됨
Parameters | Type | Description |
---|---|---|
objInst | INSTANCE | 이벤트가 발생한 오브젝트 |
bState | short | 상태 여부 |
Type | Description |
---|---|
void |
/**
* 토글버튼 마우스 진입 이벤트
*
* @param {Object} objInst 토글버튼 컴포넌트 인스턴스
* @param {number} bState 상태여부
*/
function togglebtn_on_mousein(objInst)
{
var mouse_event_pos_info;
factory.consoleprint("on_mousein> Start");
factory.consoleprint("on_mousein> Togglebtn Object Name = " + objInst.getname());
factory.consoleprint("on_mousein> bState = " + bState);
// mouse_event_pos_info 정보에 대한 자세한 내용은 getmouseeventpos API 도움말 참조
mouse_event_pos_info = factory.getmouseeventpos();
}