- var comment ;
- for (var i = 0; i < 5; i++) {
- comment = new $.wijmo.wijspread.Comment();
- comment.text("test!");
- comment.backColor("yellow");
- comment.displayMode($.wijmo.wijspread.DisplayMode.AlwaysShown);
- spread.sheets[0].setComment(i+2, i+2, comment);
- }
复制代码
通过批量添加Comment,如何通过按钮事件将所有的comment HoverShown,我没有找到查找sheet下的所有comment方法。 |
|