Comment.ThreadedComments

Comment.ThreadedComments property

Gets the list of threaded comments;

public ThreadedCommentCollection ThreadedComments { get; }

Examples


[C#]
ThreadedCommentCollection threadedComments = comment1.ThreadedComments;
for (int i = 0; i < threadedComments.Count; ++i)
{
    ThreadedComment tc = threadedComments[i];
    string note = tc.Notes;
}

See Also