CheckAll (col method)

DelCheck, CheckBox, DummyCheck 타입의 컬럼에 대한 전체 체크 설정 또는 해제 처리를 합니다.
처리를 완료 하면 각 데이터 행 단위로 OnChange이벤트가 발생합니다.

Syntax

ObjId.CheckAll(Col, Value, [OnChangeEvent]);

Info

Parameter Type Required Description
Value Integer 필수 - 0 : 전체체크 해제
- 1 : 전체체크
- 그외 : 이전값 반대
Col Long or String 필수 특정 컬럼의 Column Index 또는 SaveName
OnChangeEvent Boolean 선택 OnChange 이벤트 발생 여부 (Default :1)

Returns

none

Example

// Index가 3인 컬럼에 대한 전체 체크 처리
mySheet.CheckAll(3, 1);

// Index가 3인 컬럼에 대한 현재 값 토글 처리
mySheet.CheckAll(3, 2);

Since

version desc
7.0.0.0