註解
Contents
[
Hide
]
本文示範如何使用 Aspose.Slides for C++ 來新增、讀取、移除和更新註解投影片。
新增註解投影片
建立一個註解投影片並為其指派文字。
static void AddNote()
{
auto presentation = MakeObject<Presentation>();
auto slide = presentation->get_Slide(0);
auto notesSlide = slide->get_NotesSlideManager()->AddNotesSlide();
slide->get_NotesSlideManager()->get_NotesSlide()->get_NotesTextFrame()->set_Text(u"My note");
presentation->Dispose();
}
存取註解投影片
從現有的註解投影片讀取文字。
static void AccessNote()
{
auto presentation = MakeObject<Presentation>();
auto slide = presentation->get_Slide(0);
auto notesSlide = slide->get_NotesSlideManager()->AddNotesSlide();
auto notes = notesSlide->get_NotesTextFrame()->get_Text();
presentation->Dispose();
}
移除註解投影片
移除與投影片關聯的註解投影片。
static void RemoveNote()
{
auto presentation = MakeObject<Presentation>();
auto slide = presentation->get_Slide(0);
auto notesSlide = slide->get_NotesSlideManager()->AddNotesSlide();
slide->get_NotesSlideManager()->RemoveNotesSlide();
presentation->Dispose();
}
更新註解文字
變更註解投影片的文字。
static void UpdateNoteText()
{
auto presentation = MakeObject<Presentation>();
auto slide = presentation->get_Slide(0);
auto notesSlide = slide->get_NotesSlideManager()->AddNotesSlide();
slide->get_NotesSlideManager()->get_NotesSlide()->get_NotesTextFrame()->set_Text(u"Old");
slide->get_NotesSlideManager()->get_NotesSlide()->get_NotesTextFrame()->set_Text(u"Updated");
presentation->Dispose();
}