set_SlidesLayoutOptions()
ISwfOptions::set_SlidesLayoutOptions(System::SharedPtr<ISlidesLayoutOptions>) method
Sets the mode in which slides are placed on the page when exporting a presentation ISlidesLayoutOptions. This property doesn’t support assigning objects of type Aspose.Slides.Export.HandoutLayoutingOptions
virtual void Aspose::Slides::Export::ISwfOptions::set_SlidesLayoutOptions(System::SharedPtr<ISlidesLayoutOptions> value)=0
Remarks
Example:
System::SharedPtr<Presentation> pres = System::MakeObject<Presentation>(u"pres.pptx");
System::SharedPtr<NotesCommentsLayoutingOptions> slidesLayoutOptions = System::MakeObject<NotesCommentsLayoutingOptions>();
slidesLayoutOptions->set_CommentsPosition(CommentsPositions::Right);
System::SharedPtr<SwfOptions> options = System::MakeObject<SwfOptions>();
options->set_SlidesLayoutOptions(slidesLayoutOptions);
pres->Save(u"pres.swf", SaveFormat::Swf, options);
See Also
- Typedef SharedPtr
- Class ISlidesLayoutOptions
- Class ISwfOptions
- Namespace Aspose::Slides::Export
- Library Aspose.Slides