15 writes to x
UIAutomationClientsideProviders (15)
MS\Internal\AutomationProxies\ClickablePoint.cs (1)
286if (!GetClickablePoint(alOut, out pt.x, out pt.y))
MS\Internal\AutomationProxies\CommonXSendMessage.cs (2)
2462pt.x = x; 2489pt.x = x;
MS\Internal\AutomationProxies\ProxySimple.cs (2)
600pt.x = pt.y = 0; 609pt.x = (rcItem.right - 1 + rcItem.left) / 2;
MS\Internal\AutomationProxies\WindowsEditBox.cs (2)
404clientLocation.x = Math.Max(clientLocation.x, clientRect.left); 405clientLocation.x = Math.Min(clientLocation.x, clientRect.right);
MS\Internal\AutomationProxies\WindowsEditBoxRange.cs (1)
265w32point.x = 0;
MS\Internal\AutomationProxies\WindowsHyperlink.cs (2)
208HitTestInfo.pt.x = x; 498HitTestInfo.pt.x = x;
MS\Internal\AutomationProxies\WindowsListView.cs (1)
1801pt.x = 0;
MS\Internal\AutomationProxies\WindowsListViewItem.cs (2)
928clickPoint.x = clickPoint.y = 0; 961clickPoint.x = Math.Min ((itemRectangle.left + 5), (itemRectangle.left + itemRectangle.right) / 2);
MS\Win32\NativeMethods.cs (2)
1267this.x = x; 1686pt.x = x;
40 references to x
UIAutomationClientsideProviders (40)
MS\Internal\AutomationProxies\CommonXSendMessage.cs (3)
997new NativeMethods.TVHITTESTINFO(clientPoint.x, clientPoint.y, 0); 1006TVHITTESTINFO_32 hitTestInfo32 = new TVHITTESTINFO_32(clientPoint.x, clientPoint.y, 0); 1015TVHITTESTINFO_64 hitTestInfo64 = new TVHITTESTINFO_64(clientPoint.x, clientPoint.y, 0);
MS\Internal\AutomationProxies\Misc.cs (3)
265rc = new NativeMethods.Win32Rect(leftTop.x, leftTop.y, rightBottom.x, rightBottom.y); 994Input.SendMouseInput(ptPrevious.x, ptPrevious.y, 0, SendMouseInputFlags.Move | SendMouseInputFlags.Absolute);
MS\Internal\AutomationProxies\ProxySimple.cs (1)
243return new double[] { pt.x, pt.y };
MS\Internal\AutomationProxies\WindowsAltTab.cs (4)
152if (Misc.PtInRect(ref clientRect, pt.x, pt.y)) 154int column = (pt.x - _altTabInfo.ptStart.x) / _altTabInfo.cxItem; 401int left = ptStart.x + column * cxItem;
MS\Internal\AutomationProxies\WindowsEditBox.cs (5)
404clientLocation.x = Math.Max(clientLocation.x, clientRect.left); 405clientLocation.x = Math.Min(clientLocation.x, clientRect.right); 502Debug.Assert(point.x >= 0 && point.x < 65536, "WindowsEditBox.CharFromPos() x coordinate out of range."); 508IntPtr lParam = NativeMethods.Util.MAKELPARAM(point.x, point.y);
MS\Internal\AutomationProxies\WindowsEditBoxRange.cs (1)
271Point mapClientToScreen = new Point(w32point.x, w32point.y);
MS\Internal\AutomationProxies\WindowsFormsLinkLabel.cs (1)
148Misc.MouseClick(pt.x, pt.y);
MS\Internal\AutomationProxies\WindowsListBox.cs (1)
1129Misc.MouseClick(pt.x, pt.y);
MS\Internal\AutomationProxies\WindowsListView.cs (3)
1069int pos = pt.x; 1086if (pos != pt.x) 1804fixed (int * location = &(pt.x))
MS\Internal\AutomationProxies\WindowsListViewGroupSubsetLink.cs (1)
125Misc.MouseClick(pt.x, pt.y);
MS\Internal\AutomationProxies\WindowsListViewItem.cs (3)
237return new double[] { clickPoint.x, clickPoint.y }; 950if (pt.x < 0) 968Misc.MouseClick(clickPoint.x, clickPoint.y, !WindowsListView.ListViewSingleClickActivate(_hwnd));
MS\Internal\AutomationProxies\WindowsListViewItemCheckBox.cs (2)
260Misc.ProxySendMessage(_hwnd, NativeMethods.WM_LBUTTONDOWN, (IntPtr)NativeMethods.MK_LBUTTON, NativeMethods.Util.MAKELPARAM(pt.x, pt.y)); 261Misc.ProxySendMessage(_hwnd, NativeMethods.WM_LBUTTONUP, IntPtr.Zero, NativeMethods.Util.MAKELPARAM(pt.x, pt.y));
MS\Internal\AutomationProxies\WindowsSysHeader.cs (1)
497IntPtr center = NativeMethods.Util.MAKELPARAM (pt.x, pt.y);
MS\Internal\AutomationProxies\WindowsTab.cs (4)
1109Misc.MouseClick(pt.x, pt.y); 1145Misc.MouseClick(pt.x, pt.y); 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));
MS\Internal\AutomationProxies\WindowsTooltip.cs (5)
260IntPtr hwnd = UnsafeNativeMethods.WindowFromPhysicalPoint(pt.x, pt.y); 276if (pt.x >= rects[scan].Left && pt.x <= rects[scan].Right && pt.y >= rects[scan].Top && pt.y <= rects[scan].Bottom) 318IntPtr hwnd = UnsafeNativeMethods.WindowFromPhysicalPoint(pt.x, pt.y); 324int hit = Misc.ProxySendMessageInt(hwnd, NativeMethods.WM_NCHITTEST, IntPtr.Zero, NativeMethods.Util.MAKELPARAM(pt.x, pt.y));
MS\Internal\AutomationProxies\WindowsTreeView.cs (2)
1553Misc.PostMessage(_hwnd, NativeMethods.WM_LBUTTONDOWN, IntPtr.Zero, NativeMethods.Util.MAKELPARAM(pt.x, pt.y)); 1554Misc.PostMessage(_hwnd, NativeMethods.WM_LBUTTONUP, IntPtr.Zero, NativeMethods.Util.MAKELPARAM(pt.x, pt.y));