Skip to main content

GetClassType

Returns a type of the ApiCommentReply class.

Syntax

expression.GetClassType();

expression - A variable that represents a ApiCommentReply class.

Parameters

This method doesn't have any parameters.

Returns

"commentReply"

Example

Retrieve the class type of a comment reply in a spreadsheet.

// How to identify the class type of a comment reply in a spreadsheet?

// Obtain the class type identifier of a comment reply object 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);