이미지박스 밖으로 마우스 커서가 나갔을 때 호출되며, 자세한 내용은 샘플 소스를 참조한다.
Parameters | Type | Description |
---|---|---|
objInst | INSTANCE | 이벤트가 발생한 이미지박스 오브젝트 |
Type | Description |
---|---|
void |
/**
* 이미지박스 마우스 진출 이벤트
*
* @param {Object} objInst 이미지박스 컴포넌트 인스턴스
*/
function imagebox_on_mouseout(objInst)
{
var mouse_event_pos_info;
factory.consoleprint("on_mouseout> Start");
factory.consoleprint("on_mouseout> ImageBox Object Name = " + objInst.getname());
// mouse_event_pos_info 정보에 대한 자세한 내용은 getmouseeventpos API 도움말 참조
mouse_event_pos_info = factory.getmouseeventpos();
}