지정한 탭 아이템에 링크된 화면의 제목을 가져오는 API이다.
Parameters | Type | Description |
---|---|---|
nTabItem | short | 탭 아이템 인덱스 |
Type | Description |
---|---|
STRING | 해당 탭 아이템에 링크된 화면의 제목 |
function btnGetTitle_on_mouseup()
{
var strTitle = tabTest.getinnerscreentitle(1);
screen.alert("링크된화면제목은 " + strTitle + "입니다");
}