[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IWorksheet.CommentsThreaded

CommentsThreaded Property

CommentsThreaded

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.

Declaration
ICommentsThreaded CommentsThreaded { get; }
ReadOnly Property CommentsThreaded As ICommentsThreaded
Examples
worksheet.Range["C3"].AddCommentThreaded("Review this value", "Alex");
ICommentsThreaded commentsThreaded = worksheet.CommentsThreaded;
ICommentThreaded comment = commentsThreaded[0];