跳到主要内容

GetClassType

返回 ApiCommentReply 类的类型。

语法

expression.GetClassType();

expression - 表示 ApiCommentReply 类的变量。

参数

此方法没有任何参数。

返回值

"commentReply"

示例

检查电子表格中批注回复的对象类型。

// How do I confirm the kind of object returned when working with a comment reply in a spreadsheet?

// Verify the category label assigned to a reply within 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();
let type = reply.GetClassType();
worksheet.GetRange("A3").SetValue("Type: " + type);