트리그리드 » Api

showheadercheckbox

Description

트리그리드에서 특정 수평 헤더의 체크박스 표시 여부를 설정한다.

Parameters

Parameters Type Description
nRow short 헤더 로우 인덱스
nColumn short 헤더 컬럼 인덱스
bShow BOOL 헤더 체크박스 보일지 여부

Return Value

Type Description
void

Example

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); } }

See Also

isshowheadercheckbox

Viewer Ver.

9.1.1.1

Update Date

20170109