OnBeforeCheckAll (event)

사용자의 마우스 클릭을 통한 헤더의 전체체크박스의 값 변경시 전체체크 처리 이전에 이벤트가 발생합니다.
이벤트의 리턴값을 false로 설정하는 경우 전체체크 처리는 취소 됩니다.

Syntax

function 오브젝트ID_OnBeforeCheckAll(Row, Col) { }

Parameters

Parameter Type Description
Row Long 해당 셀의 Row Index
Col Long 해당 셀의 Column Index

Example

// confirm 을 통한 전체체크 제어
function mySheet_OnBeforeCheckAll(Row, Col) {
  if (!confirm("전체체크를 진행하시겠습니까?")) {
    // 진행 취소 처리
    return false;
  }
}

See also

Since

version desc
7.0.1.0