ComponentOne Bitmap for WPF
UnregisterFontFileLoader Method

C1.WPF.DX.4 Assembly > C1.Util.DX.DirectWrite Namespace > Factory Class : UnregisterFontFileLoader Method
Pointer to the file loader that was previously registered with the DirectWrite font system using {{RegisterFontFileLoader}}.
Unregisters a font file loader that was previously registered with the DirectWrite font system using {{RegisterFontFileLoader}}.
Syntax
'Declaration
 
Public Sub UnregisterFontFileLoader( _
   ByVal fontFileLoader As FontFileLoader _
) 
public void UnregisterFontFileLoader( 
   FontFileLoader fontFileLoader
)

Parameters

fontFileLoader
Pointer to the file loader that was previously registered with the DirectWrite font system using {{RegisterFontFileLoader}}.

Return Value

If the method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.
Remarks
This function unregisters font file loader callbacks with the DirectWrite font system. You should implement the font file loader interface by a singleton object. Note that font file loader implementations must not register themselves with DirectWrite inside their constructors and must not unregister themselves in their destructors, because registration and unregistraton operations increment and decrement the object reference count respectively. Instead, registration and unregistration of font file loaders with DirectWrite should be performed outside of the font file loader implementation.
See Also

Reference

Factory Class
Factory Members