멀티라인그리드 수평헤더부 체크박스의 체크여부를 가져오는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| nHeaderRow | short | 헤더 행 인덱스 | 
| nHeaderCol | short | 헤더 열 인덱스 | 
| Type | Description | 
|---|---|
| BOOL | 체크 여부(true, false) | 
* 멀티라인그리드의 수평헤더부 속성 중 checkbox_show를 true로 하면 헤더에 체크박스가 생긴다.
function btn_getheadercheck_on_mouseup()
{
	screen.alert("체크여부 : " + grd.getheadercheck(0,0));
}