[]
Returns an instance of ICommentThreaded which may be used to get and set ICommentThreaded properties of the cells.
ICommentThreaded CommentThreaded { get; }
ReadOnly Property CommentThreaded As ICommentThreaded
IRange range = worksheet.Range["A1"];
range.AddCommentThreaded("Review this value.", "Alex");
ICommentThreaded comment = range.CommentThreaded;
string text = comment.Text;