Method | Description | |
---|---|---|
GetAsyncKeyState ( int vKey ) : short |
The GetAsyncKeyState function determines whether a key is up or down at the time the function is called, and whether the key was pressed after a previous call to GetAsyncKeyState. For more information visit: http://msdn2.microsoft.com/en-us/library/ms646293.aspx
|
|
GetDC ( |
The GetDC function retrieves a handle to a display device context (DC) for the client area of a specified window or for the entire screen. For more information visit: http://msdn2.microsoft.com/en-us/library/ms533241.aspx
|
|
GetSystemMetrics ( int nIndex ) : int |
Retrieves the specified system metric or system configuration setting. For more information visit: http://msdn2.microsoft.com/en-us/library/ms724385.aspx
|
|
GetWindowDC ( int hWnd ) : |
The GetWindowDC function retrieves the device context (DC) for the entire window. For more information visit: http://msdn2.microsoft.com/en-us/library/ms534830.aspx
|
|
ReleaseDC ( |
The ReleaseDC function releases a device context (DC). For more information visit: http://msdn2.microsoft.com/en-us/library/ms533251.aspx
|
public static GetAsyncKeyState ( int vKey ) : short | ||
vKey | int | Specifies one of 256 possible virtual-key codes |
return | short |
public static GetDC ( |
||
hWnd | handle to window | |
return |
public static GetSystemMetrics ( int nIndex ) : int | ||
nIndex | int | system metric or configuration setting to be retrieved |
return | int |
public static GetWindowDC ( int hWnd ) : |
||
hWnd | int | handle to window |
return |
public static ReleaseDC ( |
||
hWnd | handle to window | |
hDc | handle to device context | |
return | int |