public interface IComment
Represents a comment on a slide.
Modifier and Type | Method and Description |
---|---|
ICommentAuthor |
getAuthor()
Returns the author of a comment.
|
java.util.Date |
getCreatedTime()
Returns or sets the time of a comment creation.
|
IComment |
getParentComment()
Gets or sets parent comment.
|
java.awt.geom.Point2D.Float |
getPosition()
Returns or sets the position of a comment on a slide.
|
ISlide |
getSlide()
Returns or sets the parent slide of a comment.
|
java.lang.String |
getText()
Returns or sets the plain text of a slide comment.
|
void |
remove()
Removes comment and all its replies from the parent collection.
|
void |
setCreatedTime(java.util.Date value)
Returns or sets the time of a comment creation.
|
void |
setParentComment(IComment value)
Gets or sets parent comment.
|
void |
setPosition(java.awt.geom.Point2D.Float value)
Returns or sets the position of a comment on a slide.
|
void |
setText(java.lang.String value)
Returns or sets the plain text of a slide comment.
|
java.lang.String getText()
Returns or sets the plain text of a slide comment.
Read/write String
.
void setText(java.lang.String value)
Returns or sets the plain text of a slide comment.
Read/write String
.
java.util.Date getCreatedTime()
Returns or sets the time of a comment creation.
Setting this property to java.util.Date(Long.MIN_VALUE)
means no comment time is set.
Read/write Date
.
void setCreatedTime(java.util.Date value)
Returns or sets the time of a comment creation.
Setting this property to java.util.Date(Long.MIN_VALUE)
means no comment time is set.
Read/write Date
.
ICommentAuthor getAuthor()
Returns the author of a comment.
Read-only ICommentAuthor
.
java.awt.geom.Point2D.Float getPosition()
Returns or sets the position of a comment on a slide.
Read/write Point2D.Float
.
void setPosition(java.awt.geom.Point2D.Float value)
Returns or sets the position of a comment on a slide.
Read/write Point2D.Float
.
void remove()
Removes comment and all its replies from the parent collection.
PptxEditException
- Thrown if comment is already removedIComment getParentComment()
Gets or sets parent comment.
Read/write IComment
.
PptxEditException
- Thrown if setting the value leads to a circular referencevoid setParentComment(IComment value)
Gets or sets parent comment.
Read/write IComment
.
PptxEditException
- Thrown if setting the value leads to a circular reference