트리그리드에서 특정 수평 헤더의 체크박스 표시 여부를 반환한다.
Parameters | Type | Description |
---|---|---|
nRow | short | 헤더 로우 인덱스 |
nColumn | short | 헤더 컬럼 인덱스 |
Type | Description |
---|---|
void |
function btn_on_mouseup()
{
// 현재 0,1 헤더에 체크박스 보이는 상태를 반대로 바꾼다.
if(tree_grd.isshowheadercheckbox(0, 1) == true) {
tree_grd.showheadercheckbox(0, 1, false);
} else {
tree_grd.showheadercheckbox(0, 1, true);
}
}