트리 그리드 수평 헤더의 속성 중 checkbox_show 속성이 true일 때 체크가 되었는지 여부를 가져오는 API이다.
Parameters | Type | Description |
---|---|---|
nRow | long | 로우 인덱스 |
nCol | long | 컬럼 인덱스 |
Type | Description |
---|---|
BOOL | 체크 여부(true, false) |
function btn_on_mouseup()
{
var bCheck = tgrdTest.getheadercheck(0, 0);
screen.alert("0,0헤더 체크여부 : " + bCheck);
}