set_NotesCommentsLayouting()
Html5Options::set_NotesCommentsLayouting(System::SharedPtr<INotesCommentsLayoutingOptions>) method
Provides options that control how notes and comments is placed in exported document. Write INotesCommentsLayoutingOptions.
void Aspose::Slides::Export::Html5Options::set_NotesCommentsLayouting(System::SharedPtr<INotesCommentsLayoutingOptions> value) override
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
- Typedef SharedPtr
- Class INotesCommentsLayoutingOptions
- Class Html5Options
- Namespace Aspose::Slides::Export
- Library Aspose.Slides