해당 탭아이템의 닫기 버튼의 좌우 마진값을 반환하는 API이다.
| Parameters | Type | Description |
|---|---|---|
| nTabItem | short | 탭아이템 Index |
| Type | Description |
|---|---|
| short | 좌우 마진 값 |
function btnTest_on_mouseup()
{
var nMargin = tabTest.gettabitemxbuttonhorzmargin(0);
screen.alert("tabTest의 0번째 탭아이템 닫기 버튼 좌우 Margin은 " + nMargin + "입니다.");
}