ICommentAuthorCollection

ICommentAuthorCollection

Overview

ICommentAuthorCollection is a interface in Aspose.Slides FOSS for Java.

Represents a collection of comment authors in a presentation.

Methods

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

See Also