15 writes to y
UIAutomationClientSideProviders (15)
MS\Internal\AutomationProxies\ClickablePoint.cs (1)
279if (!GetClickablePoint(alOut, out pt.x, out pt.y))
MS\Internal\AutomationProxies\CommonXSendMessage.cs (2)
2471pt.y = y; 2500pt.y = y;
MS\Internal\AutomationProxies\ProxySimple.cs (2)
583pt.x = pt.y = 0; 593pt.y = (rcItem.bottom - 1 + rcItem.top) / 2;
MS\Internal\AutomationProxies\WindowsEditBox.cs (2)
367clientLocation.y = Math.Max(clientLocation.y, clientRect.top); 368clientLocation.y = Math.Min(clientLocation.y, clientRect.bottom);
MS\Internal\AutomationProxies\WindowsEditBoxRange.cs (1)
241w32point.y = 0;
MS\Internal\AutomationProxies\WindowsHyperlink.cs (2)
198HitTestInfo.pt.y = y; 485HitTestInfo.pt.y = y;
MS\Internal\AutomationProxies\WindowsListView.cs (1)
1794pt.y = 0;
MS\Internal\AutomationProxies\WindowsListViewItem.cs (2)
914clickPoint.x = clickPoint.y = 0; 948clickPoint.y = (itemRectangle.top + itemRectangle.bottom) / 2;
MS\Win32\NativeMethods.cs (2)
1250this.y = y; 1669pt.y = y;
36 references to y
UIAutomationClientSideProviders (36)
MS\Internal\AutomationProxies\CommonXSendMessage.cs (3)
989new NativeMethods.TVHITTESTINFO(clientPoint.x, clientPoint.y, 0); 998TVHITTESTINFO_32 hitTestInfo32 = new TVHITTESTINFO_32(clientPoint.x, clientPoint.y, 0); 1007TVHITTESTINFO_64 hitTestInfo64 = new TVHITTESTINFO_64(clientPoint.x, clientPoint.y, 0);
MS\Internal\AutomationProxies\Misc.cs (3)
249rc = new NativeMethods.Win32Rect(leftTop.x, leftTop.y, rightBottom.x, rightBottom.y); 975Input.SendMouseInput(ptPrevious.x, ptPrevious.y, 0, SendMouseInputFlags.Move | SendMouseInputFlags.Absolute);
MS\Internal\AutomationProxies\ProxySimple.cs (1)
228return new double[] { pt.x, pt.y };
MS\Internal\AutomationProxies\WindowsAltTab.cs (4)
136if (Misc.PtInRect(ref clientRect, pt.x, pt.y)) 139int row = (pt.y - _altTabInfo.ptStart.y) / _altTabInfo.cyItem; 386int top = ptStart.y + row * cyItem;
MS\Internal\AutomationProxies\WindowsEditBox.cs (5)
367clientLocation.y = Math.Max(clientLocation.y, clientRect.top); 368clientLocation.y = Math.Min(clientLocation.y, clientRect.bottom); 438Debug.Assert(point.y >= 0 && point.y < 65536, "WindowsEditBox.CharFromPos() y coordinate out of range."); 443IntPtr lParam = NativeMethods.Util.MAKELPARAM(point.x, point.y);
MS\Internal\AutomationProxies\WindowsEditBoxRange.cs (1)
246Point mapClientToScreen = new Point(w32point.x, w32point.y);
MS\Internal\AutomationProxies\WindowsFormsLinkLabel.cs (1)
128Misc.MouseClick(pt.x, pt.y);
MS\Internal\AutomationProxies\WindowsListBox.cs (1)
1117Misc.MouseClick(pt.x, pt.y);
MS\Internal\AutomationProxies\WindowsListViewGroupSubsetLink.cs (1)
124Misc.MouseClick(pt.x, pt.y);
MS\Internal\AutomationProxies\WindowsListViewItem.cs (2)
227return new double[] { clickPoint.x, clickPoint.y }; 954Misc.MouseClick(clickPoint.x, clickPoint.y, !WindowsListView.ListViewSingleClickActivate(_hwnd));
MS\Internal\AutomationProxies\WindowsListViewItemCheckBox.cs (2)
253Misc.ProxySendMessage(_hwnd, NativeMethods.WM_LBUTTONDOWN, (IntPtr)NativeMethods.MK_LBUTTON, NativeMethods.Util.MAKELPARAM(pt.x, pt.y)); 254Misc.ProxySendMessage(_hwnd, NativeMethods.WM_LBUTTONUP, IntPtr.Zero, NativeMethods.Util.MAKELPARAM(pt.x, pt.y));
MS\Internal\AutomationProxies\WindowsSysHeader.cs (1)
485IntPtr center = NativeMethods.Util.MAKELPARAM (pt.x, pt.y);
MS\Internal\AutomationProxies\WindowsTab.cs (4)
1111Misc.MouseClick(pt.x, pt.y); 1147Misc.MouseClick(pt.x, pt.y); 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));
MS\Internal\AutomationProxies\WindowsTooltip.cs (5)
241IntPtr hwnd = UnsafeNativeMethods.WindowFromPhysicalPoint(pt.x, pt.y); 257if (pt.x >= rects[scan].Left && pt.x <= rects[scan].Right && pt.y >= rects[scan].Top && pt.y <= rects[scan].Bottom) 299IntPtr hwnd = UnsafeNativeMethods.WindowFromPhysicalPoint(pt.x, pt.y); 305int hit = Misc.ProxySendMessageInt(hwnd, NativeMethods.WM_NCHITTEST, IntPtr.Zero, NativeMethods.Util.MAKELPARAM(pt.x, pt.y));
MS\Internal\AutomationProxies\WindowsTreeView.cs (2)
1542Misc.PostMessage(_hwnd, NativeMethods.WM_LBUTTONDOWN, IntPtr.Zero, NativeMethods.Util.MAKELPARAM(pt.x, pt.y)); 1543Misc.PostMessage(_hwnd, NativeMethods.WM_LBUTTONUP, IntPtr.Zero, NativeMethods.Util.MAKELPARAM(pt.x, pt.y));