CommentAuthorCollection

CommentAuthorCollection — Aspose.Slides FOSS Java API Reference

CommentAuthorCollection — Represents a collection of comment authors in a presentation. Inherits from: BaseCollection<ICommentAuthor>, ICommentAuthorCollection.

Package: org.aspose.slides.foss


Methods

MethodReturnsDescription
initInternal(CommentAuthorsPart authorsPart, OpcPackage pkg, Presentation presentation)voidInitializes internal backing references that link this collection to the underlying OPC package data.
buildAuthor(AuthorData data)CommentAuthorBuilds a CommentAuthor from the given XML-backed AuthorData.
addAuthor(String name, String initials)ICommentAuthor
toArray()ICommentAuthor[]
findByName(String name)List<ICommentAuthor>
findByNameAndInitials(String name, String initials)List<ICommentAuthor>
removeAt(int index)void
remove(ICommentAuthor author)void
clear()void
get(int index)ICommentAuthor{@inheritDoc}

In XML-backed mode, delegates to CommentAuthorsPart#getAuthors() and hydrates the author at the given index.

size()int{@inheritDoc}

In XML-backed mode, returns the count from CommentAuthorsPart#getAuthors().

asICollection()List<ICommentAuthor>
asIEnumerable()Iterable<ICommentAuthor>

See Also