ICommentAuthorCollection — Aspose.Slides FOSS Java API Reference
ICommentAuthorCollection — Represents a collection of comment authors in a presentation.
Package: org.aspose.slides.foss
Methods
| Method | Returns | Description |
|---|---|---|
addAuthor(String name, String initials) | ICommentAuthor | Adds 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) | void | Removes the author at the given index, including all their comments. |
remove(ICommentAuthor author) | void | Removes an author from the collection. |
clear() | void | Removes all authors and their comments from the collection. |
get(int index) | ICommentAuthor | Returns the author at the given index. |
size() | int | Returns the number of authors. |
asICollection() | List<ICommentAuthor> | Returns the collection as a List. |
asIEnumerable() | Iterable<ICommentAuthor> | Returns the collection as an Iterable. |