[]
Gets the ICommentsThreaded collection that represents all threaded comments in the worksheet.
Each item in the returned collection is an ICommentThreaded object. Threaded comments are stored in the collection in row-major order.
ICommentsThreaded CommentsThreaded { get; }
ReadOnly Property CommentsThreaded As ICommentsThreaded
worksheet.Range["C3"].AddCommentThreaded("Review this value", "Alex");
ICommentsThreaded commentsThreaded = worksheet.CommentsThreaded;
ICommentThreaded comment = commentsThreaded[0];