[]
Gets or sets the threaded comment's text.
Returns the text content of this threaded comment, whether it is a top-level comment or a reply.
string Text { get; set; }
Property Text As String
ICommentThreaded comment = worksheet.Range["A1"].AddCommentThreaded("Please review the total.", "Alex");
comment.Text = "The total has been reviewed.";
string text = comment.Text;