Comment / CommentAuthor — Aspose.Slides FOSS for C++ API Reference

Comment

The Comment class represents a review comment on a slide.

Namespace: Aspose::Slides::Foss

#include <Aspose/Slides/Foss/comment.h>

Header: include/Aspose/Slides/Foss/comment.h

Methods

MethodDescription
set_text(const std::string&)Set the comment text.
created_time()Returns the creation timestamp.
set_created_time(...)Set the creation timestamp.
position()Returns the comment position on the slide.
set_position(...)Set the comment position.
set_parent_comment(...)Set the parent comment (for threaded replies).

CommentAuthor

The CommentAuthor class represents the author of a review comment.

#include <Aspose/Slides/Foss/comment_author.h>

Header: include/Aspose/Slides/Foss/comment_author.h

Comment authors are managed through the CommentAuthorCollection on the Presentation.


CommentCollection

An iterable collection of Comment objects. Comments on a specific slide are retrieved via Slide::get_slide_comments().


See Also