FontManager
Manages font resources and provides functionality to retrieve and manipulate fonts used in document layouts.
Definition
Namespace:Telerik.Windows.Documents.Layout
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
public static class FontManager
Inheritance: objectFontManager
Methods
Gets the registered FontFamilyInfo.
public static FontFamilyInfo GetRegisteredFontFamilyInfo(FontFamily fontFamily)
The font family.
Returns:Gets registered fonts.
Retrieves a list of characters supported by the specified font family.
public static ICollection<char> GetSupportedCharacters(FontFamily fontFamily)
The font family for which to retrieve the supported characters.
Returns:A collection of characters that the specified font family can render.
Determines whether the specified font family is registered.
public static bool HasRegisteredFontFamily(FontFamily fontFamily)
The font family.
Returns:Registers a font.
public static void RegisterFont(FontFamily fontFamily)
The font family.
Registers a FontFamilyInfo.
public static void RegisterFont(FontFamilyInfo fontFamilyInfo)
The font family info.
Unregisters a font.
public static bool UnregisterFont(FontFamily fontFamily)
The font to unregister.
Returns:Unregisters a FontFamilyInfo.
public static bool UnregisterFont(FontFamilyInfo fontFamilyInfo)
The font family info.
Returns: