get_SkipJavaScriptLinks()

Specifies whether to skip hyperlinks with JavaScript calls when saving the presentation. Read bool. The default value is false.

bool Aspose::Slides::Export::SaveOptions::get_SkipJavaScriptLinks() override

Remarks

When this property is set to true, hyperlinks with JavaScript calls will be ignored while saving.

When this property is set to false, all hyperlinks will be saved.

Example:

System::SharedPtr<Presentation> pres = System::MakeObject<Presentation>(u"demo.pptx");

System::SharedPtr<HtmlOptions> options = System::MakeObject<HtmlOptions>();
options->set_SkipJavaScriptLinks(true);

pres->Save(u"result_without_JavaScript_links.html", SaveFormat::Html, options);

See Also