onRemoveComment
使用 RemoveComments 方法删除指定评论时调用的函数。
参数
| 名称 | 数据类型 | 描述 |
|---|---|---|
| comment | Event_comment | 定义包含批注数据的批注对象。 |
window.Asc.plugin.attachEditorEvent("onRemoveComment", (comment) => {
console.log("event: onRemoveComment");
console.log("Id: " + comment.Id);
});