Delete
Deletes the ApiComment object.
Syntax
expression.Delete();
expression - A variable that represents a ApiComment class.
Parameters
This method doesn't have any parameters.
Returns
This method doesn't return any data.
Example
Delete the comment object in a spreadsheet.
// How to remove a comment from a range in a spreadsheet.
// Get a range add a comment to it and then remove it in a spreadsheet.
let worksheet = Api.GetActiveSheet();
worksheet.GetRange("A1").SetValue("1");
let range = worksheet.GetRange("A1");
range.AddComment("This is just a number.");
let comment = range.GetComment();
comment.Delete();
worksheet.GetRange("A3").SetValue("The comment was just deleted from A1.");