스플리터 » Event

on_dblclick

Description

스플리터 마우스 더블클릭 이벤트

Parameters

Parameters Type Description
objInst INSTANCE 이벤트가 발생한 오브젝트
nStartPos short 이벤트가 발생한 오브젝트의 위치
nLimitMin short 이벤트가 발생한 오브젝트의 limit_min 값
nLimitMax short 이벤트가 발생한 오브젝트의 limit_max 값

Return Value

Type Description
void

Example

/**
 * 스플리터 마우스 더블클릭 이벤트
 * @param {Object} objInst 스플리터 컴포넌트 인스턴스
 * @param {number} nStartPos 이벤트가 발생한 오브젝트의 위치
 * @param {number} nLimitMin 키코드 이벤트가 발생한 오브젝트의 limit_min 값 
 * @param {number} nLimitMax 키코드 이벤트가 발생한 오브젝트의 limit_max 값
 */
function imagebox_on_dblclick(objInst, nStartPos, nLimitMin, nLimitMax )
{
	var splitter_event_pos_info;
	
	factory.consoleprint("dblclick> Start");
	factory.consoleprint("dblclick> Splitter Object Name = " + objInst.getname());
	factory.consoleprint("dblclick> nStartPos = " + nStartPos);
	factory.consoleprint("dblclick> nLimitMin = " + nLimitMin);
	factory.consoleprint("dblclick> nLimitMax = " + nLimitMax);

	// mouse_event_pos_info 정보에 대한 자세한 내용은 getmouseeventpos API 도움말 참조
	mouse_event_pos_info = factory.getmouseeventpos();
}

Viewer Ver.

9.1.1.1

Update Date

20240104