ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Multilingual functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Returns the character set corresponding to a language.
Example
// 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 is requested. 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 is requested. 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.
Component: wd290vm.dll
Minimum version required
  • Version 10
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help