ComponentOne Bitmap for UWP
C1.UWP.DX 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}}.

In This Topic
    UnregisterFontFileLoader Method
    In This Topic
    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