탭이 활성화될때 포커스를 탭 아이템안으로 이동시킬지 여부를 설정하는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| nSelFocus | short | 포커스 이동 여부(0:none, 1:inner_focus) | 
| Type | Description | 
|---|---|
| BOOL | 정상 처리 여부 | 
addtab, addportlettab, setinnerscreenurl API호출시 bInnerFocus 파라미터가 우선적용된다. settabitemfocus API호출시 bSubWndActivate 파라미터가 우선적용된다.
function btn_setinnerscreenurl_on_mouseup(objInst)
{
 // 탭 내부화면으로 포커스 전달 안함
 tab01.settabitemselfocus(0);
 tab01.setinnerscreenurl(0, "/TAB/tab_child01");
}