set_SlidesLayoutOptions()
IPdfOptions::set_SlidesLayoutOptions(System::SharedPtr<ISlidesLayoutOptions>) method
Sets the mode in which slides are placed on the page when exporting a presentation ISlidesLayoutOptions.
virtual void Aspose::Slides::Export::IPdfOptions::set_SlidesLayoutOptions(System::SharedPtr<ISlidesLayoutOptions> value)=0
Remarks
Example:
System::SharedPtr<Presentation> pres = System::MakeObject<Presentation>(u"pres.pptx");
System::SharedPtr<HandoutLayoutingOptions> handoutLayoutingOptions = System::MakeObject<HandoutLayoutingOptions>();
handoutLayoutingOptions->set_Handout(HandoutType::Handouts4Horizontal);
System::SharedPtr<PdfOptions> options = System::MakeObject<PdfOptions>();
options->set_SlidesLayoutOptions(handoutLayoutingOptions);
pres->Save(u"pres.pdf", SaveFormat::Pdf, options);
See Also
- Typedef SharedPtr
- Class ISlidesLayoutOptions
- Class IPdfOptions
- Namespace Aspose::Slides::Export
- Library Aspose.Slides