Enumerates the user interface languages that are available on the operating system
#include <WinAPILocale.au3>
_WinAPI_EnumUILanguages ( [$iFlag = 0] )
$iFlag | [optional] The flag identifying the language format. This parameter must be 0 or one of the following values Windows Vista or later: $MUI_LANGUAGE_ID $MUI_LANGUAGE_NAME |
Success: | The array of the UI language identifiers or language names. |
Failure: | Sets the @error flag to non-zero. |
Search EnumUILanguages in MSDN Library.
#include <Array.au3>
#include <WinAPILocale.au3>
Local $aData = _WinAPI_EnumUILanguages()
_ArrayDisplay($aData, '_WinAPI_EnumUILanguages')