set_DisableFontLigatures()
IHtmlOptions::set_DisableFontLigatures(bool) method
Sets a value indicating whether text is rendered without using ligatures. When set to true, ligatures will be disabled in the rendered output. By default, this property is set to false.
virtual void Aspose::Slides::Export::IHtmlOptions::set_DisableFontLigatures(bool value)=0
Remarks
Example:
System::SharedPtr<Presentation> pres = System::MakeObject<Presentation>(u"pres.pptx");
System::SharedPtr<HtmlOptions> options = System::MakeObject<HtmlOptions>();
options->set_DisableFontLigatures(true); // Disable ligatures in text rendering
pres->Save(outputSlidePath, SaveFormat::Html, options);
See Also
- Class IHtmlOptions
- Namespace Aspose::Slides::Export
- Library Aspose.Slides