시트에서
Formula가 계산을 시작할때 호출되는 이벤트입니다.
시트의 기본 설정되어 있는Formula및 사용자가 추가한Formula를 계산하기 전에 발생합니다.
return값에 따라 계산 중단 여부를 설정할 수 있습니다.
onBeforeCalculate: function(paramObject) {
}
or
sheet.bind("onBeforeCalculate" , function(paramObject) {});
| Name | Type | Description |
|---|---|---|
| sheet | object |
Formula 계산이 시작된 시트 객체 |
| show | boolean |
화면 반영 여부 |
| row | object |
Formula 계산이 시작된 셀이 위치한 데이터 로우 객체 |
| col | string |
Formula 계산이 시작된 셀의 열이름 |
boolean
options.Events = {
onBeforeCalculate:function(evtParam){
console.log("==================== [" + evtParams.sheet.id + "] 시트 Formula 계산 시작 ====================");
}
}
| product | version | desc |
|---|---|---|
| core | 8.0.0.0 | 기능 추가 |