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