Skip to main content

GetReply

Returns the specified comment reply.

Syntax

expression.GetReply(nIndex);

expression - A variable that represents a ApiComment class.

Parameters

NameRequired/OptionalData typeDefaultDescription
nIndexOptionalNumber0The comment reply index.

Returns

ApiCommentReply

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());