Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 350 Bytes

3.事件.md

File metadata and controls

9 lines (8 loc) · 350 Bytes

批注事件

Excel.View.Sheets 在表单上提供了一些批注相关的事件来让你更方便的监视批注的变化。

CommentChanged 事件会在批注发生变化的时候被触发(比如某些属性的值发生变化)。

sheet.bind(Excel.View.Sheets.Events.CommentChanged, function(e, args) {
   // do something
});