public interface ICommentAuthor
Represents an author of comments.
Modifier and Type | Method and Description |
---|---|
ICommentCollection |
getComments()
Returns the collection of comments made by this author.
|
java.lang.String |
getInitials()
Returns or sets the authors initials.
|
java.lang.String |
getName()
Returns or sets the author's name.
|
void |
remove()
Removes the author from the parent collection.
|
void |
setInitials(java.lang.String value)
Returns or sets the authors initials.
|
void |
setName(java.lang.String value)
Returns or sets the author's name.
|
java.lang.String getName()
Returns or sets the author's name.
Read/write String
.
void setName(java.lang.String value)
Returns or sets the author's name.
Read/write String
.
java.lang.String getInitials()
Returns or sets the authors initials.
Read/write String
.
void setInitials(java.lang.String value)
Returns or sets the authors initials.
Read/write String
.
ICommentCollection getComments()
Returns the collection of comments made by this author.
Read-only ICommentCollection
.
void remove()
Removes the author from the parent collection.
PptxEditException
- Thrown if author is already removed.