Unload a font.
Syntax

[C#]

static string[] FontUnload(string inFontName);

[Visual Basic]

Shared Function FontUnload(inFontName As String) As String()
Params
Name Description
inFontName The name of the font to be unloaded.
return The names of the fonts that were unloaded.
Notes

Unloads all matching fonts so that they are no longer available. It is important that you ensure that the font is not being used by ImageGlue at the point that it is unloaded. This means you need to consider if other threads might be constructing images that are making use of the font. Unloading a font which is in use may result in unpredictable behavior or output.

See Also

FontLoad

Example

None.