화면 » Event

on_portletdestroy

Description

포틀릿 화면 닫힘 완료 이벤트이다. 상세 설명은 샘플 소스를 참조한다.

Parameters

Parameters Type Description
portlet_name STRING 포틀릿 이름(screen.loadportlet API에서 지정한 이름)
result STRING 포틀릿 화면 리턴값(unloadportlet API에서 지정한 값)

Return Value

Type Description
void

Example

/**
 * 포틀릿 화면 닫힘 완료 이벤트
 * screen.loadportlet API로 로드한 화면 닫힘 이벤트
 *
 * @param {string} portlet_name 포틀릿 이름(screen.loadportlet API에서 지정한 이름)
 * @param {string} result 포틀릿 화면 리턴값(unloadportlet API에서 지정한 값)
 */
function screen_on_portletdestroy(portlet_name, result)
{
	factory.consoleprint("screen_on_portletdestroy> Start");
	factory.consoleprint("screen_on_portletdestroy> portlet_name = " + portlet_name);
	factory.consoleprint("screen_on_portletdestroy> result = " + result);	
}

See Also

on_portletload
on_destroy

Viewer Ver.

9.1.1.1

Update Date

20230504