지정한 탭 아이템에 링크된 화면 정보 오브젝트 값을 리턴한다.
Parameters | Type | Description |
---|---|---|
nTabItem | short | 탭 아이템 인덱스 |
Type | Description |
---|---|
class | 탭에 링크된 화면 정보 오브젝트 값 또는 null |
화면이 링크된 탭이 아닌 경우에는, null 값이 리턴된다.
화면 정보 오브젝트 형태는 아래와 같다
screen_info = { screen_id: "화면 ID", screen_url: "화면 URL", screen_title: "화면 타이틀" }
function btn_settabitemzoom_on_mouseup(objInst)
{
var screen_info;
screen_info = tab.gettabitemchildscreeninfo(0);
if(screen_info != null) {
factory.consoleprint(screen_info.screen_id);
factory.consoleprint(screen_info.screen_url);
factory.consoleprint(screen_info.screen_title);
}
}