트리뷰아이템 위에 마우스 커서가 위치할 때 호출됨
Parameters | Type | Description |
---|---|---|
objInst | INSTANCE | 컴포넌트 인스턴스 |
index | short | 아이템 인덱스(메뉴이외영역은 -1) |
depth | short | 아이템 깊이(메뉴이외영역은 -1) |
Type | Description |
---|---|
void | 없음 |
/**
* 트리뷰 마우스 진입 이벤트
*
* @param {Object} objInst 트리뷰 컴포넌트 인스턴스
* @param {number} index 아이템 인덱스(메뉴이외영역은 -1)
* @param {number} depth 아이템 깊이(메뉴이외영역은 -1)
*/
function treeview_on_mousein(objInst)
{
var mouse_event_pos_info;
factory.consoleprint("on_mousein> Start");
factory.consoleprint("on_mousein> TreeView Object Name = " + objInst.getname());
// mouse_event_pos_info 정보에 대한 자세한 내용은 getmouseeventpos API 도움말 참조
mouse_event_pos_info = factory.getmouseeventpos();
}