[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ICommentThreaded.Parent

Parent Property

Parent

Gets the parent object for the specified threaded comment.

The top-level threaded comment's parent is null. For a reply, this method returns the threaded comment that the reply belongs to.

Declaration
ICommentThreaded Parent { get; }
ReadOnly Property Parent As ICommentThreaded
Examples
ICommentThreaded comment = worksheet.Range["A1"].AddCommentThreaded("Review this value", "Alex");
ICommentThreaded reply = comment.AddReply("I updated the number.", "Jamie");
ICommentThreaded parent = reply.Parent;