Aspose::Cells::Comment::GetThreadedComments method

Comment::GetThreadedComments method

Gets the list of threaded comments;.

ThreadedCommentCollection Aspose::Cells::Comment::GetThreadedComments()

Examples

ThreadedCommentCollection threadedComments = comment1.GetThreadedComments();
for (int i = 0; i < threadedComments.GetCount(); ++i)
{
    ThreadedComment tc = threadedComments.Get(i);
    U16String note = tc.GetNotes();
}

See Also