[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ICommentsThreaded

ICommentsThreaded Interface

A collection of top-level threaded comment objects in a worksheet, or a collection of replies in a single threaded comment.

Each comment is represented by an ICommentThreaded object. Use CommentsThreaded to access all threaded comments in a worksheet, or Replies to access the replies of a specific threaded comment.

Namespace: GrapeCity.Documents.Excel
Assembly: DS.Documents.Excel.dll
Syntax
public interface ICommentsThreaded : IEnumerable
Public Interface ICommentsThreaded
    Inherits IEnumerable
Examples
ICommentThreaded comment = worksheet.Range["C3"].AddCommentThreaded("Check the sales total.", "Nancy");
comment.AddReply("I updated the number.", "Bill");

ICommentsThreaded commentsThreaded = worksheet.CommentsThreaded;
ICommentsThreaded replies = comment.Replies;
ICommentThreaded firstReply = replies[0];

Properties

Name Description
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.

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.