评论
Contents
[
Hide
]
本文演示如何使用 Aspose.Slides for C++ 添加、读取、删除以及回复现代评论。
添加现代评论
创建由用户撰写的评论并保存演示文稿。
static void AddModernComment()
{
auto presentation = MakeObject<Presentation>();
auto slide = presentation->get_Slide(0);
auto author = presentation->get_CommentAuthors()->AddAuthor(u"User", u"U1");
author->get_Comments()->AddModernComment(
u"This is a modern comment", slide, nullptr, PointF(100, 100), DateTime::get_Now());
presentation->Save(u"modern_comment.pptx", SaveFormat::Pptx);
presentation->Dispose();
}
访问现代评论
从现有演示文稿中读取现代评论。
static void AccessModernComment()
{
auto presentation = MakeObject<Presentation>(u"modern_comment.pptx");
auto author = presentation->get_CommentAuthor(0);
auto comment = ExplicitCast<SharedPtr<IModernComment>>(author->get_Comment(0));
Console::WriteLine(u"Author: {0}, Comment: {1}, Position: {2}",
author->get_Name(), comment->get_Text(), comment->get_Position());
presentation->Dispose();
}
删除现代评论
删除评论并保存更新后的文件。
static void RemoveModernComment()
{
auto presentation = MakeObject<Presentation>(u"modern_comment.pptx");
auto author = presentation->get_CommentAuthor(0);
auto comment = author->get_Comment(0);
comment->Remove();
presentation->Save(u"modern_comment_removed.pptx", SaveFormat::Pptx);
presentation->Dispose();
}
回复现代评论
向父级现代评论添加回复。
static void ReplyToModernComment()
{
auto presentation = MakeObject<Presentation>();
auto slide = presentation->get_Slide(0);
auto author = presentation->get_CommentAuthors()->AddAuthor(u"User", u"U1");
auto parentComment = author->get_Comments()->AddModernComment(
u"Parent comment", slide, nullptr, PointF(100, 100), DateTime::get_Now());
auto reply1 = author->get_Comments()->AddModernComment(
u"Reply 1", slide, nullptr, PointF(110, 100), DateTime::get_Now());
auto reply2 = author->get_Comments()->AddModernComment(
u"Reply 2", slide, nullptr, PointF(120, 100), DateTime::get_Now());
reply1->set_ParentComment(parentComment);
reply2->set_ParentComment(parentComment);
presentation->Save(u"modern_comment_replies.pptx", SaveFormat::Pptx);
presentation->Dispose();
}