IDWriteFactory1::GetEudcFontCollection method (dwrite_1.h)

Gets a font collection representing the set of EUDC (end-user defined characters) fonts.

Syntax

HRESULT GetEudcFontCollection(
  [out] IDWriteFontCollection **fontCollection,
        BOOL                  checkForUpdates
);

Parameters

[out] fontCollection

Type: IDWriteFontCollection**

The font collection to fill.

checkForUpdates

Type: BOOL

Whether to check for updates.

Return value

Type: HRESULT

If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.

Remarks

Note that if no EUDC is set on the system, the returned collection will be empty, meaning it will return success but GetFontFamilyCount will be zero.

Requirements

Requirement Value
Minimum supported client Windows 8 and Platform Update for Windows 7 [desktop apps | UWP apps]
Minimum supported server Windows Server 2012 and Platform Update for Windows Server 2008 R2 [desktop apps | UWP apps]
Target Platform Windows
Header dwrite_1.h
Library Dwrite.lib
DLL Dwrite.dll

See also

IDWriteFactory1