AutomationElement.FromPoint(Point) Method

Definition

Retrieves a new AutomationElement object for the user interface (UI) item at specified point on the desktop.

C#
public static System.Windows.Automation.AutomationElement FromPoint(System.Windows.Point pt);

Parameters

pt
Point

The physical screen coordinates on the desktop at which to locate the UI element.

Returns

The UI item at the specified point.

Examples

The following example retrieves the AutomationElement at the system cursor location.

C#
private AutomationElement ElementFromCursor()
{
    // Convert mouse position from System.Drawing.Point to System.Windows.Point.
    System.Windows.Point point = new System.Windows.Point(Cursor.Position.X, Cursor.Position.Y);
    AutomationElement element = AutomationElement.FromPoint(point);
    return element;
}

Remarks

FromPoint returns the element in the logical tree that is closest to the root element.

If your client application might try to find elements in its own user interface, you must make all UI Automation calls on a separate thread.

Although the point is within the bounding rectangle of the returned AutomationElement, it is not necessarily on a clickable part of the control. For example, a round button might not be clickable near one of the corners of its bounding rectangle.

Applies to

Tuote Versiot
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also