NotesSlide — Aspose.Slides FOSS for C++ API Reference

The NotesSlide class represents the speaker notes for a slide.

Namespace: Aspose::Slides::Foss

#include <Aspose/Slides/Foss/notes_slide.h>
class NotesSlide

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


Properties

PropertyAccessorDescription
shapes()ReadReturns ShapeCollection of shapes on the notes slide.
text_frame()ReadReturns the TextFrame containing the notes text.
header_footer_manager()ReadReturns INotesSlideHeaderFooterManager for header/footer settings.
parent_slide()ReadReturns the parent ISlide.

NotesSlideManager

The NotesSlideManager class manages the notes slide for a given slide. Accessed via Slide::notes_slide_manager().

MethodDescription
remove_notes_slide()Remove the notes slide from the parent slide.

NotesSlideHeaderFooterManager

Controls visibility and content of header, footer, date-time, and slide number on notes slides:

MethodDescription
is_footer_visible()Whether the footer is visible.
is_date_time_visible()Whether date-time is visible.
is_slide_number_visible()Whether slide number is visible.
is_header_visible()Whether the header is visible.
set_footer_visibility(bool)Show/hide footer.
set_date_time_visibility(bool)Show/hide date-time.
set_slide_number_visibility(bool)Show/hide slide number.
set_header_visibility(bool)Show/hide header.
set_footer_text(const std::string&)Set footer text.
set_date_time_text(const std::string&)Set date-time text.
set_header_text(const std::string&)Set header text.

See Also