MS\Internal\AutomationProxies\WindowsTab.cs (15)
512int minPos = NativeMethods.Util.HIWORD(range);
513int maxPos = NativeMethods.Util.LOWORD(range);
520Misc.ProxySendMessage(_hwnd, NativeMethods.WM_HSCROLL, (IntPtr)NativeMethods.Util.MAKELPARAM(NativeMethods.SB_THUMBPOSITION, newPos), IntPtr.Zero);
546minPos = NativeMethods.Util.HIWORD(range);
547maxPos = NativeMethods.Util.LOWORD(range);
548currentPos = NativeMethods.Util.LOWORD(posResult);
694int max = NativeMethods.Util.LOWORD(range);
698Misc.ProxySendMessage(_hwnd, NativeMethods.WM_HSCROLL, NativeMethods.Util.MAKELPARAM(NativeMethods.SB_THUMBPOSITION, newPos), IntPtr.Zero);
816int max = NativeMethods.Util.LOWORD(range);
817int min = NativeMethods.Util.HIWORD(range);
819if (NativeMethods.Util.HIWORD (newPos) == 0)
824newPos = NativeMethods.Util.LOWORD (newPos);
855Misc.ProxySendMessage(_hwnd, NativeMethods.WM_HSCROLL, NativeMethods.Util.MAKELPARAM(NativeMethods.SB_THUMBPOSITION, newPos), IntPtr.Zero);
1305Misc.PostMessage(_hwnd, NativeMethods.WM_LBUTTONDOWN, (IntPtr)NativeMethods.MK_LBUTTON, NativeMethods.Util.MAKELPARAM(pt.x, pt.y));
1306Misc.PostMessage(_hwnd, NativeMethods.WM_LBUTTONUP, (IntPtr)NativeMethods.MK_LBUTTON, NativeMethods.Util.MAKELPARAM(pt.x, pt.y));