set_RefreshThumbnail()
PptxOptions::set_RefreshThumbnail(bool) method
Specifies whether the presentation thumbnail will be refreshed. Write bool. Default value is true.
void Aspose::Slides::Export::PptxOptions::set_RefreshThumbnail(bool value) override
Remarks
When the option value is true, the new thumbnail will be generated.
When the option value is false, the current thumbnail will be saved as is.
Example:
System::SharedPtr<Presentation> pres = System::MakeObject<Presentation>(u"demo.pptx");
System::SharedPtr<PptxOptions> pptxOptions = System::MakeObject<PptxOptions>();
pptxOptions->set_RefreshThumbnail(false);
pres->Save(u"result_with_old_thumbnail.pptx", SaveFormat::Pptx, pptxOptions);
See Also
- Class PptxOptions
- Namespace Aspose::Slides::Export
- Library Aspose.Slides