get_EmbedImages()

IHtml5Options::get_EmbedImages() method

Returns images embedding option. Read bool.

virtual bool Aspose::Slides::Export::IHtml5Options::get_EmbedImages()=0

Remarks

Example:

System::SharedPtr<Presentation> pres = System::MakeObject<Presentation>(u"demo.pptx");
System::SharedPtr<Html5Options> html5Options = System::MakeObject<Html5Options>();
html5Options->set_EmbedImages(false);
pres->Save(u"demo-linked-images.html", SaveFormat::Html5, html5Options);

See Also