[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ICommentsThreaded.Count

Count Property

Count

Gets the number of threaded comments in the collection.

This collection can represent either all top-level threaded comments in a worksheet or the replies of a single ICommentThreaded. The returned value reflects the number of items in the current collection.

Declaration
int Count { get; }
ReadOnly Property Count As Integer
Examples
ICommentThreaded comment = worksheet.Range["A1"].AddCommentThreaded("Please review the total.", "Alex");
comment.AddReply("I updated the number.", "Jamie");
ICommentsThreaded replies = comment.Replies;
int count = replies.Count;