GetScriptFontMap

Fonts.GetScriptFontMap method

Returns a dictionary of all script font definitions in the presentation.

public IDictionary<string, string> GetScriptFontMap()

Return Value

A dictionary mapping script codes to font names.

Examples

[C#]
IDictionary<string, string> map = presentation.MasterTheme.FontScheme.Major.GetScriptFontMap();
foreach (var kvp in map)
{
    Console.WriteLine(kvp.Key + " ? " + kvp.Value);
}

See Also