public static extern IntPtr MonitorFromRect([In] ref Win32Helper.RECT lprc, uint dwFlags);
internal static extern bool GetWindowRect(IntPtr hWnd, out Win32Helper.RECT lpRect);
internal static Win32Helper.RECT GetWindowRect(IntPtr hWnd) { Win32Helper.RECT rECT = new Win32Helper.RECT(); Win32Helper.GetWindowRect(hWnd, out rECT); return(rECT); }
private static extern bool GetClientRect(IntPtr hWnd, out Win32Helper.RECT lpRect);