跳到主要内容

GetTime

返回当前时区格式的批注回复创建时间戳。

语法

expression.GetTime();

expression - 表示 ApiCommentReply 类的变量。

参数

此方法没有任何参数。

返回值

Number

示例

此示例演示如何获取当前时区格式的批注回复创建时间戳。

// How to get a time when a reply was created.

// Add a reply creation timestamp to a range of the worksheet.

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