[]
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.
ICommentThreaded this[int Index] { get; }
ReadOnly Default Property Item(Index As Integer) As ICommentThreaded
| Type | Name | Description |
|---|---|---|
| int | Index | The zero-based index of the threaded comment in the collection. |
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];