Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

Search Results for "GetAsyncKeyState" in [All]

user32

.
Summary
.

static extern short GetAsyncKeyState(System.Windows.Forms.Keys vKey);

.

    Shared Function GetAsyncKeyState(ByVal vKey As System.Windows.Forms.Keys) As Short

.

Declare Function GetAsyncKeyState Lib "user32" (ByVal vkey As Integer) As Short

.

    private static extern short GetAsyncKeyState(System.Windows.Forms.Keys vKey); // Keys enumeration

.

    private static extern short GetAsyncKeyState(System.Int32 vKey);

.

            int x = GetAsyncKeyState(i);

.

    static extern ushort GetAsyncKeyState(int vKey);

.

        return 0 != (GetAsyncKeyState((int)vKey) & 0x8000);

.

     Shared Function GetAsyncKeyState(ByVal vKey As System.Windows.Forms.Keys) As Short

.

     If GetAsyncKeyState(Keys.Return) <> 0 Then

.
Documentation
[GetAsyncKeyState] on MSDN
. * Used only as parameters to GetAsyncKeyState() and GetKeyState().

Enums

.

    ' NOTE :: Used only as parameters to GetAsyncKeyState() and GetKeyState().


 
Access PInvoke.net directly from VS: