ICommentAuthor

Overview

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

Represents a comment author in a presentation.

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

Properties

NameTypeAccessDescription
nameStringReadReturns the author name.
initialsStringReadReturns the author initials.
commentsICommentCollectionReadReturns the collection of comments by this author.

Methods

SignatureDescription
getName()StringReturns the author name.
setName(name: String)Sets the author name.
getInitials()StringReturns the author initials.
setInitials(initials: String)Sets the author initials.
getComments()ICommentCollectionReturns the collection of comments by this author.
remove()Removes this author and all their comments from the presentation.

See Also