Skip to main content

SetTimeUTC

Sets the timestamp of the comment creation in UTC format.

Syntax

expression.SetTimeUTC(nTimeStamp);

expression - A variable that represents a ApiComment class.

Parameters

NameRequired/OptionalData typeDefaultDescription
nTimeStampRequiredNumber | StringThe timestamp of the comment creation in UTC format.

Returns

This method doesn't return any data.

Example

This example sets the timestamp of the comment creation in UTC format.

let worksheet = Api.GetActiveSheet();
worksheet.GetRange("A1").SetValue("1");
let range = worksheet.GetRange("A1");
let comment = range.AddComment("This is just a number.", "John Smith");
worksheet.GetRange("A3").SetValue("Timestamp UTC: ");
comment.SetTimeUTC(Date.now());
worksheet.GetRange("B3").SetValue(comment.GetTimeUTC());