IsCharAlphaNumeric

This function determines whether a character is either an alphabetic or a numeric character. This determination is based on the semantics of the language selected by the user during setup or by using Control Panel.

At a Glance

Header file: Winbase.h
Windows CE versions: 1.0 and later

Syntax

BOOL IsCharAlphaNumeric(TCHAR ch);

Parameters

ch

[in] Specifies the character to be tested.

Return Values

Nonzero indicates that the character is alphanumeric. Zero indicates that the character is not alphanumeric. To get extended error information, call GetLastError.

Remarks

Windows CE supports only the Unicode version of this function.

See Also

IsCharAlpha