RemoveScriptFont

Fonts.RemoveScriptFont method

Removes the font setting associated with a specific script tag from the theme’s font collection.

public void RemoveScriptFont(string script)
ParameterTypeDescription
scriptStringThe BCP-47 script code whose font setting should be removed.

Examples

This example demonstrates how to remove the font mapping for the Hebrew script:

[C#]
presentation.MasterTheme.FontScheme.Major.RemoveScriptFont("Hebr");

See Also