Funktionreferenz


_WinAPI_GetKeyboardLayoutLocale


Retrieves the string name of the input locale identifier for the specified window

#include <WinAPISys.au3>
_WinAPI_GetKeyboardLayoutLocale ( [$hWnd = 0] )

Parameter

$hWnd [optional] The input locale identifier (Default: running process).

Rückgabewert

Success: String name of the input locale identifier.
Failure: 0.

Bemerkungen

None.

Verwandte Funktionen

_WinAPI_GetKeyboardLayout

Beispiel

#include <WinAPISys.au3>

Local $sName = _WinAPI_GetKeyboardLayoutLocale()

MsgBox(0, "GetKeyboardLayoutLocale - v(" & @AutoItVersion & ")", $sName)