GetTextCharset function
Retrieves a character set identifier for the font that is currently selected into a specified device context.
Syntax
int GetTextCharset(
_In_ HDC hdc
);
Parameters
- hdc [in]
-
Handle to a device context. The function obtains a character set identifier for the font that is selected into this device context.
Return value
If successful, returns a value identifying the character set of the font that is currently selected into the specified device context. The following character set identifiers are defined:
- ANSI_CHARSET
- BALTIC_CHARSET
- CHINESEBIG5_CHARSET
- DEFAULT_CHARSET
- EASTEUROPE_CHARSET
- GB2312_CHARSET
- GREEK_CHARSET
- HANGUL_CHARSET
- MAC_CHARSET
- OEM_CHARSET
- RUSSIAN_CHARSET
- SHIFTJIS_CHARSET
- SYMBOL_CHARSET
- TURKISH_CHARSET
- VIETNAMESE_CHARSET
- JOHAB_CHARSET
- ARABIC_CHARSET
- HEBREW_CHARSET
- THAI_CHARSET
If the function fails, it returns DEFAULT_CHARSET.
Requirements
|
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows 2000 Server [desktop apps only] |
|
Header |
|
|
Library |
|
|
DLL |
|
See also