CommentAuthor

Overview

CommentAuthor is a class in Aspose.Slides FOSS for Java. Inherits from: ICommentAuthor.

Represents an author of comments.

This class provides 9 methods for working with CommentAuthor objects in Java programs. Available methods include: CommentAuthor, getComments, getId, getInitials, getName, initInternal, remove, setInitials, setName. All public members are accessible to any Java application after installing the Aspose.Slides FOSS for Java package. Properties: comments, id, initials, name.

Properties

NameTypeAccessDescription
nameStringReadGets the name.
initialsStringReadGets the initials.
commentsICommentCollectionReadGets the comments.
idintReadReturns the internal author id.

Methods

SignatureDescription
CommentAuthor(name: String, initials: String, id: int)Creates a new comment author.
initInternal(data: AuthorData, authorsPart: CommentAuthorsPart, pkg: OpcPackage, presentation: Presentation)Initializes internal backing references that link this author to the
underlying OPC package data.
getName()StringReturns the name.
setName(name: String)Sets the name value.
getInitials()StringReturns the initials.
setInitials(initials: String)Sets the initials value.
getComments()ICommentCollectionReturns the comments.
remove()Deletes this author from the presentation
getId()intReturns the internal author id.

See Also