MS\Internal\AutomationProxies\WindowsTab.cs (15)
514int minPos = NativeMethods.Util.HIWORD(range);
515int maxPos = NativeMethods.Util.LOWORD(range);
522Misc.ProxySendMessage(_hwnd, NativeMethods.WM_HSCROLL, (IntPtr)NativeMethods.Util.MAKELPARAM(NativeMethods.SB_THUMBPOSITION, newPos), IntPtr.Zero);
548minPos = NativeMethods.Util.HIWORD(range);
549maxPos = NativeMethods.Util.LOWORD(range);
550currentPos = NativeMethods.Util.LOWORD(posResult);
696int max = NativeMethods.Util.LOWORD(range);
700Misc.ProxySendMessage(_hwnd, NativeMethods.WM_HSCROLL, NativeMethods.Util.MAKELPARAM(NativeMethods.SB_THUMBPOSITION, newPos), IntPtr.Zero);
818int max = NativeMethods.Util.LOWORD(range);
819int min = NativeMethods.Util.HIWORD(range);
821if (NativeMethods.Util.HIWORD (newPos) == 0)
826newPos = NativeMethods.Util.LOWORD (newPos);
857Misc.ProxySendMessage(_hwnd, NativeMethods.WM_HSCROLL, NativeMethods.Util.MAKELPARAM(NativeMethods.SB_THUMBPOSITION, newPos), IntPtr.Zero);
1307Misc.PostMessage(_hwnd, NativeMethods.WM_LBUTTONDOWN, (IntPtr)NativeMethods.MK_LBUTTON, NativeMethods.Util.MAKELPARAM(pt.x, pt.y));
1308Misc.PostMessage(_hwnd, NativeMethods.WM_LBUTTONUP, (IntPtr)NativeMethods.MK_LBUTTON, NativeMethods.Util.MAKELPARAM(pt.x, pt.y));