函数参考


_WinAPI_EnumUILanguages

Enumerates the user interface languages that are available on the operating system.

#Include <WinAPIEx.au3>
_WinAPI_EnumUILanguages ( [$iFlag] )

参数

$iFlag [可选参数] The flag identifying the language format. This parameter must be 0 (Windows XP) 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.
失败: 返回 0 并设置 @error 标志为非 0 值.

注意/说明

None

相关

详情参考

在MSDN中搜索


示例/演示


#Include <Array.au3>
#Include <WinAPIEx.au3>

Opt('MustDeclareVars', 1)

Global $Data = _WinAPI_EnumUILanguages()

_ArrayDisplay($Data, '_WinAPI_EnumUILanguages')