Skip to main content

GetTime

Returns the timestamp of the comment reply creation in the current time zone format.

Syntax

expression.GetTime();

expression - A variable that represents a ApiCommentReply class.

Parameters

This method doesn't have any parameters.

Returns

Number

Example

Read the local creation time recorded on a comment reply in a spreadsheet.

// How do I find out exactly when a reply to a comment was posted in a spreadsheet?

// Show the date and time a reply was added to a comment thread 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 timestamp: ");
worksheet.GetRange("B3").SetValue(reply.GetTime());