탭에 첫번째 보여지고자 하는 탭의 아이템 인덱스를 설정 할 수 있는 API입니다.
Parameters | Type | Description |
---|---|---|
nFirstTabItem | long | 첫번째 보여질 탭아이템 인덱스 |
Type | Description |
---|---|
BOOL | 성공/실패 여부 |
function btnLeft_on_mouseup(objInst)
{
// 탭아이템을 왼쪽으로 한번 스크롤시키자.
var nVisibleFirstItem = tab.getvisiblefirsttabitem() - 1;
if(-1 < nVisibleFirstItem) {
tab.setvisiblefirsttabitem(nVisibleFirstItem);
}
}