跳到主要内容

GetRepliesCount

返回批注回复的数量。

语法

expression.GetRepliesCount();

expression - 表示 ApiComment 类的变量。

参数

此方法没有任何参数。

返回值

Number

示例

计算电子表格中批注上存在的回复数量。

// How do I find out the total number of replies attached to a comment in a spreadsheet?

// Retrieve the reply count for a comment to track discussion activity in a spreadsheet.

let worksheet = Api.GetActiveSheet();
worksheet.GetRange("A1").SetValue("1");
let range = worksheet.GetRange("A1");
let comment = range.AddComment("This is just a number.");
comment.AddReply("Reply 1", "John Smith", "uid-1");
worksheet.GetRange("A3").SetValue("Comment replies count: ");
worksheet.GetRange("B3").SetValue(comment.GetRepliesCount());