11 instantiations of RECT
UIAutomationClient (11)
MS\Internal\Automation\BoundingRectTracker.cs (2)
96NativeMethods.RECT rc32 = new NativeMethods.RECT(0,0,0,0); 157private static NativeMethods.RECT _emptyRect = new NativeMethods.RECT(0,0,0,0);
MS\Internal\Automation\ClickablePoint.cs (1)
44NativeMethods.RECT winRect = new NativeMethods.RECT((int)rect.Left, (int)rect.Top, (int)rect.Height, (int)rect.Bottom);
MS\Internal\Automation\HwndProxyElementProvider.cs (8)
253NativeMethods.RECT rcW32 = new NativeMethods.RECT(); 666NativeMethods.RECT currentRect = new NativeMethods.RECT(); 690NativeMethods.RECT parentRect = new NativeMethods.RECT(); 750NativeMethods.RECT currentRect = new NativeMethods.RECT(); 1728NativeMethods.RECT rcBest = new NativeMethods.RECT(); 1749NativeMethods.RECT rc = new NativeMethods.RECT(); 1853NativeMethods.RECT rcChild = new NativeMethods.RECT(); 1872NativeMethods.RECT rcClient = new NativeMethods.RECT();
28 references to RECT
UIAutomationClient (28)
MS\Internal\Automation\BoundingRectTracker.cs (5)
96NativeMethods.RECT rc32 = new NativeMethods.RECT(0,0,0,0); 138private static bool Compare( NativeMethods.RECT rc1, NativeMethods.RECT rc2 ) 157private static NativeMethods.RECT _emptyRect = new NativeMethods.RECT(0,0,0,0); 159private NativeMethods.RECT _lastRect; // keep track of last location
MS\Internal\Automation\ClickablePoint.cs (1)
44NativeMethods.RECT winRect = new NativeMethods.RECT((int)rect.Left, (int)rect.Top, (int)rect.Height, (int)rect.Bottom);
MS\Internal\Automation\HwndProxyElementProvider.cs (13)
253NativeMethods.RECT rcW32 = new NativeMethods.RECT(); 666NativeMethods.RECT currentRect = new NativeMethods.RECT(); 690NativeMethods.RECT parentRect = new NativeMethods.RECT(); 750NativeMethods.RECT currentRect = new NativeMethods.RECT(); 1474NativeMethods.RECT rcW32; 1701private static bool PtInRect( NativeMethods.RECT rc, double x, double y ) 1707private static bool Rect1InRect2( NativeMethods.RECT rc1, NativeMethods.RECT rc2 ) 1728NativeMethods.RECT rcBest = new NativeMethods.RECT(); 1749NativeMethods.RECT rc = new NativeMethods.RECT(); 1853NativeMethods.RECT rcChild = new NativeMethods.RECT(); 1872NativeMethods.RECT rcClient = new NativeMethods.RECT(); 1917private static bool MapWindowPoints(NativeMethods.HWND hWndFrom, NativeMethods.HWND hWndTo, ref NativeMethods.RECT rect, int cPoints)
MS\Internal\Automation\Misc.cs (2)
345internal static bool GetClientRect(NativeMethods.HWND hwnd, out NativeMethods.RECT rc) 475internal static bool GetWindowRect(NativeMethods.HWND hwnd, out NativeMethods.RECT rc)
MS\Win32\SafeNativeMethods.cs (4)
80public NativeMethods.RECT rc; 151public static extern bool GetClientRect( NativeMethods.HWND hwnd, out NativeMethods.RECT rc ); 154public static extern bool GetWindowRect( NativeMethods.HWND hwnd, out NativeMethods.RECT rc ); 221public static extern IntPtr MonitorFromRect( ref NativeMethods.RECT rect, int dwFlags );
MS\Win32\UnsafeNativeMethods.cs (2)
337public NativeMethods.RECT rcNormalPosition; 366internal NativeMethods.RECT rcBar;
parent\parent\Shared\MS\Win32\NativeMethodsSetLastError.cs (1)
79public static extern int MapWindowPoints(NativeMethods.HWND hWndFrom, NativeMethods.HWND hWndTo, [In, Out] ref NativeMethods.RECT rect, int cPoints);