ThreadedComments

Comment.ThreadedComments property

Obtient la liste des commentaires thématiques ;

public ThreadedCommentCollection ThreadedComments { get; }

Exemples


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

Voir également