[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IComment.Delete

Delete Method

Delete()

Deletes this comment from its cell.

Use this method to remove a single cell comment. To remove comments from multiple cells in a range, use ClearComments().

Declaration
void Delete()
Sub Delete()
Examples
worksheet.Range["D5"].Value = "Review";
IComment comment = worksheet.Range["D5"].AddComment("Check this value.");
comment.Delete();