onEventDeleted

在事件被删除后立即触发(自版本 3.0+ 起可用)

void onEventDeleted(string id,object ev);
idstring事件的 id
evobject事件对象

Example

scheduler.attachEvent("onEventDeleted", function(id,ev){
    // 自定义代码
});

Related samples

Details

无论是否使用 DataProcessor 库,此事件都会触发。

返回顶部