[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ICommentsThreaded.Item

this Property

this[int]

Gets the ICommentThreaded object at the specified index.

This collection can represent either all top-level threaded comments in a worksheet or the replies of a single ICommentThreaded.

Declaration
ICommentThreaded this[int Index] { get; }
ReadOnly Default Property Item(Index As Integer) As ICommentThreaded
Parameters
Type Name Description
int Index

The zero-based index of the threaded comment in the collection.

Examples
ICommentThreaded comment = worksheet.Range["C3"].AddCommentThreaded("Check the sales total.", "Nancy");
comment.AddReply("I updated the number.", "Bill");
ICommentsThreaded replies = comment.Replies;
ICommentThreaded firstReply = replies[0];