포틀릿 화면 닫힘 완료 이벤트이다. 상세 설명은 샘플 소스를 참조한다.
| Parameters | Type | Description | 
|---|---|---|
| portlet_name | STRING | 포틀릿 이름(screen.loadportlet API에서 지정한 이름) | 
| result | STRING | 포틀릿 화면 리턴값(unloadportlet API에서 지정한 값) | 
| Type | Description | 
|---|---|
| void | 
/**
 * 포틀릿 화면 닫힘 완료 이벤트
 * 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);	
}