get_NotesCommentsLayouting()

IHtml5Options::get_NotesCommentsLayouting() method

Provides options that control how notes and comments is placed in exported document. Read INotesCommentsLayoutingOptions.

virtual System::SharedPtr<INotesCommentsLayoutingOptions> Aspose::Slides::Export::IHtml5Options::get_NotesCommentsLayouting()=0

Remarks

Example:

System::SharedPtr<Presentation> pres = System::MakeObject<Presentation>(u"test.pptx");

System::SharedPtr<NotesCommentsLayoutingOptions> notesCommentsLayoutingOptions = System::MakeObject<NotesCommentsLayoutingOptions>();
notesCommentsLayoutingOptions->set_NotesPosition(Aspose::Slides::Export::NotesPositions::BottomTruncated);

System::SharedPtr<Html5Options> html5Options = System::MakeObject<Html5Options>();
html5Options->set_OutputPath(u"test_pptx");
html5Options->set_NotesCommentsLayouting(notesCommentsLayoutingOptions);

pres->Save(u"index.html", Aspose::Slides::Export::SaveFormat::Html5, html5Options);

See Also