|
|
|
|
|
LanguageToCharset (Function) In french: LangueVersAlphabet Returns the character set corresponding to a language.
// Find out the character set corresponding // to the Armenian language ResCharset is int ResCharset = LanguageToCharset(languageArmenian) SWITCH ResCharset CASE charsetArabic: ... CASE charsetChinese: ... CASE charsetEastEurope: ... END
// Find out the character set corresponding // to the Chinese language in Taiwan ResCharset is int ResCharset = LanguageToCharset(languageChinese, 1) SWITCH ResCharset CASE charsetChinese: ... CASE charsetTraditionalChinese: ... END
Syntax
<Result> = LanguageToCharset(<Language> [, <Sub-language>])
<Result>: Integer constant Constant identifying the character set of the specified language. For more details on these constants, see Correspondence between languages, sub-languages, character sets and nations. <Language>: Integer constant Language whose character set you want to get. For more details on these constants, see Correspondence between languages, sub-languages, character sets and nations. <Sub-language>: Optional integer Number of the sub-language whose character set you want to get. For more details on sub-languages, see Correspondence between languages, sub-languages, character sets and nations. If this parameter is not specified, the standard character set of the specified <Language> is returned.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|