MS\Internal\AutomationProxies\WindowsTab.cs (15)
505int minPos = NativeMethods.Util.HIWORD(range);
506int maxPos = NativeMethods.Util.LOWORD(range);
513Misc.ProxySendMessage(_hwnd, NativeMethods.WM_HSCROLL, (IntPtr)NativeMethods.Util.MAKELPARAM(NativeMethods.SB_THUMBPOSITION, newPos), IntPtr.Zero);
539minPos = NativeMethods.Util.HIWORD(range);
540maxPos = NativeMethods.Util.LOWORD(range);
541currentPos = NativeMethods.Util.LOWORD(posResult);
688int max = NativeMethods.Util.LOWORD(range);
692Misc.ProxySendMessage(_hwnd, NativeMethods.WM_HSCROLL, NativeMethods.Util.MAKELPARAM(NativeMethods.SB_THUMBPOSITION, newPos), IntPtr.Zero);
810int max = NativeMethods.Util.LOWORD(range);
811int min = NativeMethods.Util.HIWORD(range);
813if (NativeMethods.Util.HIWORD (newPos) == 0)
818newPos = NativeMethods.Util.LOWORD (newPos);
849Misc.ProxySendMessage(_hwnd, NativeMethods.WM_HSCROLL, NativeMethods.Util.MAKELPARAM(NativeMethods.SB_THUMBPOSITION, newPos), IntPtr.Zero);
1299Misc.PostMessage(_hwnd, NativeMethods.WM_LBUTTONDOWN, (IntPtr)NativeMethods.MK_LBUTTON, NativeMethods.Util.MAKELPARAM(pt.x, pt.y));
1300Misc.PostMessage(_hwnd, NativeMethods.WM_LBUTTONUP, (IntPtr)NativeMethods.MK_LBUTTON, NativeMethods.Util.MAKELPARAM(pt.x, pt.y));