RemoveReplies

RemoveReplies([nPos], [nCount], [bRemoveAll])

Removes the specified comment replies.

Parameters:

Name Type Default Description
nPos Number 0

The position of the first comment reply to remove.

nCount Number 1

A number of comment replies to remove.

bRemoveAll boolean false

Specifies whether to remove all comment replies or not.

Returns:

This method doesn't return any data.

Example

Copy code
builder.CreateFile("xlsx");
var oWorksheet = Api.GetActiveSheet();
oWorksheet.GetRange("A1").SetValue("1");
var oRange = oWorksheet.GetRange("A1");
var oComment = oRange.AddComment("This is just a number.");
oComment.AddReply("Reply 1", "John Smith", "uid-1");
oComment.AddReply("Reply 2", "John Smith", "uid-1");
oComment.RemoveReplies(0, 1, false);
oWorksheet.GetRange("A3").SetValue("Comment replies count: " + oComment.GetRepliesCount());
builder.SaveFile("xlsx", "RemoveReplies.xlsx");
builder.CloseFile();

Resulting document