RemoveReplies
Removes the specified comment replies.
Syntax
expression.RemoveReplies(nPos, nCount, bRemoveAll);
expression
- A variable that represents a ApiComment class.
Parameters
Name | Required/Optional | Data type | Default | Description |
---|---|---|---|---|
nPos | Optional | Number | false | The position of the first comment reply to remove. |
nCount | Optional | Number | true | A number of comment replies to remove. |
bRemoveAll | Optional | boolean | false | Specifies whether to remove all comment replies or not. |
Returns
This method doesn't return any data.
Example
This example removes the specified comment replies.
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: ");
oWorksheet.GetRange("B3").SetValue(oComment.GetRepliesCount());