Class SvgFontManager
Manages access to
Implements
System.IDisposable
Inherited Members
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Svg
Assembly: Svg.dll
Syntax
public class SvgFontManager : IDisposable
Properties
| Improve this Doc View SourceLocalizedFamilyNames
Declaration
public static List<string[]> LocalizedFamilyNames { get; }
Property Value
| Type | Description |
|---|---|
| List<System.String[]> |
PrivateFontDataList
Declaration
public static List<byte[]> PrivateFontDataList { get; }
Property Value
| Type | Description |
|---|---|
| List<System.Byte[]> |
PrivateFontPathList
Declaration
public static List<string> PrivateFontPathList { get; }
Property Value
| Type | Description |
|---|---|
| List<System.String> |
Methods
| Improve this Doc View SourceDispose()
Declaration
public void Dispose()
FindFont(String)
This method searches a dictionary of fonts (pre loaded with the system fonts). If a font can't be found and a callback has been provided - then the callback should perform any validation and return a font (or null if not found/error). Where a font can't be located it is the responsibility of the caller to perform any exception handling.
Declaration
public FontFamily FindFont(string name)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | A System.String containing the FamilyName of the font. |
Returns
| Type | Description |
|---|---|
| FontFamily | An |
Implements
System.IDisposable