Skip to main content

GetTime

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

Syntax

expression.GetTime();

expression - A variable that represents a ApiComment class.

Parameters

This method doesn't have any parameters.

Returns

Number

Example

Read when a comment was created using the local time zone in a spreadsheet.

// How do I find out the exact date and time a comment was posted, in my local time, in a spreadsheet?

// Capture the creation timestamp of a comment to record the local time it was added 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.");
worksheet.GetRange("A3").SetValue("Timestamp: ");
worksheet.GetRange("B3").SetValue(comment.GetTime());