IDWriteFontFace3::AreCharactersLocal method (dwrite_3.h)

Determines whether the specified characters are local.

Syntax

HRESULT AreCharactersLocal(
  [in]  WCHAR const *characters,
        UINT32      characterCount,
        BOOL        enqueueIfNotLocal,
  [out] BOOL        *isLocal
);

Parameters

[in] characters

Type: WCHAR

Array of characters.

characterCount

Type: UINT32

The number of elements in the character array.

enqueueIfNotLocal

Type: BOOL

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

[out] isLocal

Type: BOOL*

Receives TRUE if all of the specified characters are local,
FALSE if any of the specified characters 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