IDWriteFontFace3::AreGlyphsLocal method (dwrite_3.h)

Determines whether the specified glyphs are local.

Syntax

HRESULT AreGlyphsLocal(
  [in]  UINT16 const *glyphIndices,
        UINT32       glyphCount,
        BOOL         enqueueIfNotLocal,
  [out] BOOL         *isLocal
);

Parameters

[in] glyphIndices

Type: UINT16

Array of glyph indices.

glyphCount

Type: UINT32

The number of elements in the glyph index array.

enqueueIfNotLocal

Type: BOOL

Specifies whether to enqueue a download request
if any of the specified glyphs are not local.

[out] isLocal

Type: BOOL*

Receives TRUE if all of the specified glyphs are local,
FALSE if any of the specified glyphs are remote.

Return value

Type: HRESULT

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

Requirements

Requirement Value
Minimum supported client Windows 10 [desktop apps only]
Minimum supported server Windows Server 2016 [desktop apps only]
Target Platform Windows
Header dwrite_3.h
Library Dwrite.lib
DLL Dwrite.dll

See also

IDWriteFontFace3