탭 아이템 영역 좌측 우측에 마진값을 반환하는 API이다. 파라미터 nOrder는 좌측/우측 방향을 의미하는것으로 값은 아래와 같다. 0 : 좌측 1 : 우측
Parameters | Type | Description |
---|---|---|
nOrder | short | 구하고자 하는 탭아이템 마진 영역(좌측 : 0, 우측 : 1) |
Type | Description |
---|---|
long | 탭아이템 좌우측 마진 |
function btn_gettabitemareamargin_on_mouseup(objInst)
{
factory.consoleprint("탭아이템 좌측 마진 : " + instTab.gettabitemareamargin(0));
factory.consoleprint("탭아이템 우측 마진 : " + instTab.gettabitemareamargin(1));
}