[]
Gets or sets a value indicating whether the threaded comment is resolved.
bool IsResolved { get; set; }
Property IsResolved As Boolean
ICommentThreaded comment = worksheet.Range["A1"].AddCommentThreaded("Please review the total.", "Alex");
comment.IsResolved = true;
bool resolved = comment.IsResolved;