[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ICommentThreaded.Replies

Replies Property

Replies

Gets the replies of this threaded comment.

Returns a ICommentsThreaded collection that contains the ICommentThreaded objects replying to this comment. The replies are sorted by time stamp. If this threaded comment is itself a reply, this property returns null.

Declaration
ICommentsThreaded Replies { get; }
ReadOnly Property Replies As ICommentsThreaded
Examples
ICommentThreaded comment = worksheet.Range["A1"].AddCommentThreaded("Please review the total.", "Alex");
comment.AddReply("I updated the total.", "Jamie");
comment.AddReply("I verified the formula.", "Morgan");
ICommentsThreaded replies = comment.Replies;
ICommentThreaded firstReply = replies[0];