ICommentAuthorCollection

ICommentAuthorCollection — Aspose.Slides FOSS Java API Reference

ICommentAuthorCollection — Represents a collection of comment authors in a presentation.

Package: org.aspose.slides.foss


Methods

MethodReturnsDescription
addAuthor(String name, String initials)ICommentAuthorAdds a new author.
toArray()ICommentAuthor[]Returns all authors as an array.
findByName(String name)List<ICommentAuthor>Finds authors by name.
findByNameAndInitials(String name, String initials)List<ICommentAuthor>Finds authors by name and initials.
removeAt(int index)voidRemoves the author at the given index, including all their comments.
remove(ICommentAuthor author)voidRemoves an author from the collection.
clear()voidRemoves all authors and their comments from the collection.
get(int index)ICommentAuthorReturns the author at the given index.
size()intReturns the number of authors.
asICollection()List<ICommentAuthor>Returns the collection as a List.
asIEnumerable()Iterable<ICommentAuthor>Returns the collection as an Iterable.

See Also