지정한 탭 아이템의 포틀릿 이름(portlet_name)을 반환하는 API이다.
Parameters | Type | Description |
---|---|---|
nTabItem | short | 탭 아이템 인덱스 |
Type | Description |
---|---|
short | 탭 아이템 포틀릿 이름 |
nTabItem 파라미터가 유효하지 않은 경우, null 값이 리턴된다.
function btnTest_on_mouseup()
{
var strPortletName = tabTest.gettabitemportletname(0);
screen.alert("strPortletName : " + strPortletName);
}