Desktop Functions: Smart Device Functions:
|
Search Results for "GetWindowRect" in [All]user32
static extern bool GetWindowRect(System.IntPtr hWnd, out RECT lpRect);
GetWindowRect(hWnd, out to);
bool GetWindowRect(int hWnd, RECT^ lpRect);
GetWindowRect(hWnd, to); 2: GetWindowPos Use GetWindowRect Win32 method for position information.
static extern bool GetWindowRect(IntPtr hwnd, out RECT lpRect);
Private Shared Function GetWindowRect(ByVal hWnd As HandleRef, ByRef lpRect As RECT) As Boolean
static extern bool GetWindowRect(HandleRef hWnd, out RECT lpRect);
if(!GetWindowRect(new HandleRef(this, this.Handle), out rct ))
GetWindowRect(hWnd, out rct); 5: MoveWindow
internal static extern bool GetWindowRect(IntPtr hWnd, ref RECT rect);
GetWindowRect(id, ref Rect);
GetWindowRect(hWnd, out rct); 7: SetWindowPos
var windowRec = GetWindowRect(windowHandler); |