화면이 탭에 링크된 경우, 링크된 탭 컴포넌트를 가져오는 API이다. 탭에 링크된 화면이 아닌 경우에는, null을 리턴한다.
Type | Description |
---|---|
short | 화면이 링크된 탭 인스턴스 |
function btn_getscreentab_on_mouseup()
{
var objTab = screen.getscreentab();
if(objTab != null) {
screen.alert(objTab.gettabitemfocus());
}
}