使用 Office.js 直接获取 Excel 评论单元格引用

Get Excel comment cell reference directly using Office.js

我需要阅读 Excel 工作表中的所有注释以及相关的单元格引用,使用 Office.js。

我不知道评论在哪个单元格中,我可以访问 Excel.CommentCollection 对象并读取所有评论信息,但我找不到获取评论单元格引用的方法,有办法得到吗?

谢谢

您可以使用getLocation()获取Range对象,然后您可以获得单元格引用表格范围

getLocation(): Excel.Range;

您可以在 https://docs.microsoft.com/en-us/javascript/api/excel/excel.comment?view=excel-js-preview#getlocation--

找到该文档