set_DeleteEmbeddedBinaryObjects()

ILoadOptions::set_DeleteEmbeddedBinaryObjects(bool) method

Determines if Aspose.Slides will delete all embedded binary objects while presentation loading.

virtual void Aspose::Slides::ILoadOptions::set_DeleteEmbeddedBinaryObjects(bool value)=0

Remarks

The types of the embedded binary objects:

Write bool.

Default is false.

The following example shows how to load the presentation without any embedded binary objects.

System::SharedPtr<LoadOptions> loadOptions = System::MakeObject<LoadOptions>();
loadOptions->set_DeleteEmbeddedBinaryObjects(true);

System::SharedPtr<Presentation> pres = System::MakeObject<Presentation>(u"pres.ppt", loadOptions);
pres->Save(u"output_WithoutBinaryObjects.ppt", SaveFormat::Ppt);

See Also