탭아이템의 잠금버튼 보이기/숨기기 여부를 반환 하는 API이다.
Type | Description |
---|---|
BOOL | 숨김/보이기 여부 |
function btnTest_on_mouseup()
{
if(tabTest.gettabitemlockbutton() == true) {
factory.consoleprint("탭아이템 잠금 버튼 보이기상태");
} else {
factory.consoleprint("탭아이템 잠금 버튼 숨김상태");
}
}