GetScriptFontMap()
Fonts::GetScriptFontMap() method
Returns a dictionary of all script font definitions in the presentation.
System::SharedPtr<System::Collections::Generic::IDictionary<System::String, System::String>> Aspose::Slides::Fonts::GetScriptFontMap() override
Return Value
A dictionary mapping script codes to font names.
Remarks
System::SharedPtr<System::Collections::Generic::IDictionary<System::String, System::String>> map = presentation->get_MasterTheme()->get_FontScheme()->get_Major()->GetScriptFontMap();
for (auto&& kvp : map)
{
System::Console::WriteLine(kvp.get_Key() + u" ? " + kvp.get_Value());
}
See Also
- Typedef SharedPtr
- Class IDictionary
- Class String
- Class Fonts
- Namespace Aspose::Slides
- Library Aspose.Slides