Click or drag to resize
Ab4d.SharpEngine logo

TrueTypeFontLoader Class

TrueTypeFontLoader class handles loading of TrueType (.ttf) font files. New fonts can be loaded by calling LoadFontFile or LoadFontFileAsync on the single class Instance. After loading the font, it can be used by VectorFontFactory.
Inheritance Hierarchy
SystemObject
  Ab4d.SharpEngine.UtilitiesTrueTypeFontLoader

Namespace: Ab4d.SharpEngine.Utilities
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.0.9208+3b2441d6a11f923f2600f40f4296bdc3d8b46035
Syntax
C#
public class TrueTypeFontLoader

The TrueTypeFontLoader type exposes the following members.

Constructors
 NameDescription
Public methodTrueTypeFontLoaderInitializes a new instance of the TrueTypeFontLoader class
Top
Properties
 NameDescription
Public propertyDefaultFontName DefaultFontName can be set to the font name that is used as default font that is used when the FontName is not specified. If this value is not set by the user, then it is automatically set to the first loaded font.
Public propertyFallbackFontName FallbackFontName can be set to the font name that is used as the fallback font that is used when the specified font name is not found. If this value is not set by the user, then it is automatically set to the first loaded font.
Top
Methods
 NameDescription
Public methodIsFontLoaded Returns true if font with the specified fontName was already loaded.
Public methodLoadFontFile(Stream, String) LoadFontFile method loads the TrueType font file (.ttf) from the specified stream and when the loading is complete it set the font data to be accessible by the fontName by the VectorFontFactory.
Public methodLoadFontFile(String, String) LoadFontFile method loads the TrueType font file (.ttf) from the specified fontFilePath and when the loading is complete it set the font data to be accessible by the fontName by the VectorFontFactory.
Public methodLoadFontFileAsync(Stream, String) LoadFontFile method loads the TrueType font file (.ttf) on the background thread and when the loading is complete it set the font data to be accessible by the fontName by the VectorFontFactory.
Public methodLoadFontFileAsync(String, String) LoadFontFile method loads the specified TrueType font file (.ttf) on the background thread and when the loading is complete it set the font data to be accessible by the fontName by the VectorFontFactory.
Top
Fields
 NameDescription
Public fieldStatic memberInstance Single instance of TrueTypeFontLoader
Top
See Also