ISpellCheckerFactory::IsSupported method (spellcheck.h)

Determines if the specified language is supported by a registered spell checker.

Syntax

HRESULT IsSupported(
  [in]          LPCWSTR languageTag,
  [out, retval] BOOL    *value
);

Parameters

[in] languageTag

A BCP47 language tag that identifies the language for the requested spell checker.

[out, retval] value

TRUE if supported; FALSE if not supported.

Return value

This method can return one of these values.

Return code Description
S_OK
Successful.
E_ INVALIDARG
languageTag is an empty string.
E_POINTER
languageTag is a null pointer.

Requirements

Requirement Value
Minimum supported client Windows 8 [desktop apps | UWP apps]
Minimum supported server Windows Server 2012 [desktop apps | UWP apps]
Target Platform Windows
Header spellcheck.h

See also

BCP47 Tags for Identifying Languages

ISpellCheckerFactory