Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 733 Bytes

1.基本应用.md

File metadata and controls

18 lines (15 loc) · 733 Bytes

批注基本应用

你可以给 Excel.View.Sheets 添加批注。 使用批注可以让你的表单中的内容更容易理解。

要添加批注到表单, 首先需要创建一个批注并设置, 然后使用 add 方法来将批注设置到表单中的某个单元格。例如:

sheet.comments.add(5, 5, 'new comment!');

如果你需要移除已经添加的批注,请使用以下的方法:

sheet.comments.remove(5, 5);

当你添加批注到一个单元格后, 你可以使用 get 方法来获取单个单元格上的批注,或者使用 all 方法来获取表单上的所有批注。

var comment = sheet.comments.get(5, 5);
var comments = sheet.comments.all();