|
|
|
|
|
LanguageToNation (Function) In french: LangueVersNation Returns the nation corresponding to a language.
// Find out the nation corresponding // to the Armenian language ResNation is int ResNation = LanguageToNation(languageArmenian) SWITCH ResNation CASE nationGerman: ... CASE nationAustralian: ... CASE 0: ... END
// Find out the nation corresponding // to the English language in Australia ResNation is int ResNation = LanguageToNation(languageEnglish, 3) SWITCH ResNation CASE nationEnglish: ... CASE nationAustralian: ... CASE 0: ... END
Syntax
<Result> = LanguageToNation(<Language> [, <Sub-language>])
<Result>: Integer constant - Nation corresponding to the specified language,
- 0 if no nation corresponds to the specified language.
For more details on these constants, see Correspondence between languages, sub-languages, character sets and nations.
<Language>: Integer constant Language whose nation you want to get. For more details on these constants, see Correspondence between languages, sub-languages, character sets and nations. <Sub-language>: Optional integer Sub-language whose nation 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 nation of the specified <Language> is returned.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|