탭아이템의 잠금 버튼의 좌우 정렬상태를 반환하는 API이다. 반환되는 값 0 : 왼쪽 1 : 오른쪽
| Type | Description | 
|---|---|
| BOOL | 좌우 정렬 값 | 
function btnTest_on_mouseup()
{
	if(tabTest.gettabitemlockbuttonhorzalign() == 0) {
		factory.consoleprint("left..");
	} else {
		factory.consoleprint("right..");
	}
}