IDWriteFactory::CreateCustomFontCollection method
Creates a font collection using a custom font collection loader.
Syntax
virtual HRESULT CreateCustomFontCollection( IDWriteFontCollectionLoader * collectionLoader, [in] const void * collectionKey, UINT32 collectionKeySize, [out] IDWriteFontCollection ** fontCollection ) = 0;
Parameters
- collectionLoader
-
Type: IDWriteFontCollectionLoader*
An application-defined font collection loader, which must have been previously registered using RegisterFontCollectionLoader.
- collectionKey [in]
-
Type: const void*
The key used by the loader to identify a collection of font files. The buffer allocated for this key should at least be the size of collectionKeySize.
- collectionKeySize
-
Type: UINT32
The size, in bytes, of the collection key.
- fontCollection [out]
-
Type: IDWriteFontCollection**
Contains an address of a pointer to the system font collection object if the method succeeds, or NULL in case of failure.
Return value
Type: HRESULT
If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.
Requirements
|
Minimum supported client |
Windows 7, Windows Vista with SP2 and Platform Update for Windows Vista [desktop apps | Windows Store apps] |
|---|---|
|
Minimum supported server |
Windows Server 2008 R2, Windows Server 2008 with SP2 and Platform Update for Windows Server 2008 [desktop apps | Windows Store apps] |
|
Minimum supported phone |
Windows Phone 8.1 [Windows Phone Silverlight 8.1 and Windows Runtime apps] |
|
Header |
|
|
Library |
|
|
DLL |
|
See also