지정한 아이템 앞의 체크박스에 체크가 되어있는 지를 반환하는 API이다.
Parameters | Type | Description |
---|---|---|
lItem | long | 트리 아이템 |
Type | Description |
---|---|
BOOL | 체크 여부(true, false) |
* 체크박스가 설정되지 않은 트리일 경우 null을 반환한다.
function btn_getitemcheck_on_mouseup()
{
screen.alert("체크 여부 : " + trTest.getitemcheck(trTest.getselecteditem()));
}