get_RefreshThumbnail()

PptxOptions::get_RefreshThumbnail() method

Specifies whether the presentation thumbnail will be refreshed. Read bool. Default value is true.

bool Aspose::Slides::Export::PptxOptions::get_RefreshThumbnail() 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