MS\Internal\AutomationProxies\WindowsTab.cs (15)
506int minPos = NativeMethods.Util.HIWORD(range);
507int maxPos = NativeMethods.Util.LOWORD(range);
514Misc.ProxySendMessage(_hwnd, NativeMethods.WM_HSCROLL, (IntPtr)NativeMethods.Util.MAKELPARAM(NativeMethods.SB_THUMBPOSITION, newPos), IntPtr.Zero);
540minPos = NativeMethods.Util.HIWORD(range);
541maxPos = NativeMethods.Util.LOWORD(range);
542currentPos = NativeMethods.Util.LOWORD(posResult);
689int max = NativeMethods.Util.LOWORD(range);
693Misc.ProxySendMessage(_hwnd, NativeMethods.WM_HSCROLL, NativeMethods.Util.MAKELPARAM(NativeMethods.SB_THUMBPOSITION, newPos), IntPtr.Zero);
811int max = NativeMethods.Util.LOWORD(range);
812int min = NativeMethods.Util.HIWORD(range);
814if (NativeMethods.Util.HIWORD (newPos) == 0)
819newPos = NativeMethods.Util.LOWORD (newPos);
850Misc.ProxySendMessage(_hwnd, NativeMethods.WM_HSCROLL, NativeMethods.Util.MAKELPARAM(NativeMethods.SB_THUMBPOSITION, newPos), IntPtr.Zero);
1300Misc.PostMessage(_hwnd, NativeMethods.WM_LBUTTONDOWN, (IntPtr)NativeMethods.MK_LBUTTON, NativeMethods.Util.MAKELPARAM(pt.x, pt.y));
1301Misc.PostMessage(_hwnd, NativeMethods.WM_LBUTTONUP, (IntPtr)NativeMethods.MK_LBUTTON, NativeMethods.Util.MAKELPARAM(pt.x, pt.y));