탭아이템의 잠금 버튼 보이기/숨기기를 설정 하는 API이다.
Parameters | Type | Description |
---|---|---|
nTabItem | short | 텝아이템 Index |
bShow | BOOL | 보이기/숨기기 |
Type | Description |
---|---|
BOOL | 성공/실패 여부 |
function btnTest_on_mouseup()
{
if(tabTest.gettabitemlockbuttonex(0) == true) {
tabTest.settabitemlockbuttonex(0, false);
} else {
tabTest.settabitemlockbuttonex(0, true);
}
}