是否可以使用Apps脚本在Google文档中添加归因于特定文字的评论?

时间:2017-01-30 05:43:49

标签: google-apps-script google-drive-api google-docs

Google文档评论:

enter image description here

我的目标是使用Google Apps脚本添加特定于文本的评论,如上图所示。现在我有这个工作代码,但它只为整个文档添加了一般性注释。

function myFunction() {
  var fileId = '{FILE_ID}';
  var resource = {'content': 'comment body text'};
  Drive.Comments.insert(resource, name);
}

1 个答案:

答案 0 :(得分:0)

不可能。在这段视频中 - Google Drive SDK: Announcing the Comments API(5:30 - 5:39) - 提到:

  

..我们确实有一个专有的锚定方案,这使得您难以创建以我们的文档格式固定到文本的注释,或者实际上是不可能的......

" 采用我们的文档格式"指的是Google文档和表格。

answer中也提到了这一点。有关评论的更多详细信息,您可以查看Manage Comments and Discussions文档。