set_DisableFontLigatures()
SVGOptions::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.
void Aspose::Slides::Export::SVGOptions::set_DisableFontLigatures(bool value) override
Remarks
Example:
System::SharedPtr<Presentation> pres = System::MakeObject<Presentation>(u"pres.pptx");
System::SharedPtr<SVGOptions> options = System::MakeObject<SVGOptions>();
options->set_DisableFontLigatures(true); // Disable ligatures in text rendering
System::SharedPtr<System::IO::FileStream> fileStream = System::MakeObject<System::IO::FileStream>(u"slide-0.svg", System::IO::FileMode::Create, System::IO::FileAccess::Write);
pres->get_Slide(0)->WriteAsSvg(fileStream);
See Also
- Class SVGOptions
- Namespace Aspose::Slides::Export
- Library Aspose.Slides