MS\Internal\AutomationProxies\WindowsTab.cs (15)
510int minPos = NativeMethods.Util.HIWORD(range);
511int maxPos = NativeMethods.Util.LOWORD(range);
518Misc.ProxySendMessage(_hwnd, NativeMethods.WM_HSCROLL, (IntPtr)NativeMethods.Util.MAKELPARAM(NativeMethods.SB_THUMBPOSITION, newPos), IntPtr.Zero);
544minPos = NativeMethods.Util.HIWORD(range);
545maxPos = NativeMethods.Util.LOWORD(range);
546currentPos = NativeMethods.Util.LOWORD(posResult);
693int max = NativeMethods.Util.LOWORD(range);
697Misc.ProxySendMessage(_hwnd, NativeMethods.WM_HSCROLL, NativeMethods.Util.MAKELPARAM(NativeMethods.SB_THUMBPOSITION, newPos), IntPtr.Zero);
815int max = NativeMethods.Util.LOWORD(range);
816int min = NativeMethods.Util.HIWORD(range);
818if (NativeMethods.Util.HIWORD (newPos) == 0)
823newPos = NativeMethods.Util.LOWORD (newPos);
854Misc.ProxySendMessage(_hwnd, NativeMethods.WM_HSCROLL, NativeMethods.Util.MAKELPARAM(NativeMethods.SB_THUMBPOSITION, newPos), IntPtr.Zero);
1304Misc.PostMessage(_hwnd, NativeMethods.WM_LBUTTONDOWN, (IntPtr)NativeMethods.MK_LBUTTON, NativeMethods.Util.MAKELPARAM(pt.x, pt.y));
1305Misc.PostMessage(_hwnd, NativeMethods.WM_LBUTTONUP, (IntPtr)NativeMethods.MK_LBUTTON, NativeMethods.Util.MAKELPARAM(pt.x, pt.y));