Button
컬럼 타입의 버튼을 클릭할 때 발생하는 이벤트입니다.
해당 셀의 Editable이 false인 경우에는 이벤트가 발생하지 않습니다.
function 오브젝트ID_OnButtonClick(Row, Col) { }
Parameter | Type | Description |
---|---|---|
Row | Long |
대상 행의 Index |
Col | Long |
대상 컬럼의 Index |
function mySheet_OnButtonClick(Row, Col) {
console.log("[" + Row + "," + Col + "] 셀의 버튼 클릭");
}
version | desc |
---|---|
7.0.13.9 |