ThreadedComments

Comment.ThreadedComments property

Ruft die Liste der Thread-Kommentare ab;

public ThreadedCommentCollection ThreadedComments { get; }

Beispiele


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

Siehe auch