GetReply
Returns the specified comment reply.
Syntax
expression.GetReply(nIndex);
expression - A variable that represents a ApiComment class.
Parameters
| Name | Required/Optional | Data type | Default | Description |
|---|---|---|---|---|
| nIndex | Optional | Number | 0 | The comment reply index. |
Returns
Example
Read a specific reply from a comment thread in a spreadsheet.
// How do I access a particular reply within a comment thread in a spreadsheet?
// Retrieve the text of a chosen reply to inspect its contents 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");
let reply = comment.GetReply();
worksheet.GetRange("A3").SetValue("Comment's reply text: ");
worksheet.GetRange("B3").SetValue(reply.GetText());