AutomationElement.TryGetClickablePoint(Point) Method

Definition

Retrieves a point within the element that can be clicked.

public bool TryGetClickablePoint(out System.Windows.Point pt);

Parameters

pt
Point

When this method returns, contains the physical screen coordinates of a clickable point.

Returns

true if there is a point that is clickable; otherwise false.

Examples

The following example attempts to retrieve a clickable point on an AutomationElement.

// element is an AutomationElement.
System.Windows.Point pt;
bool clickable = element.TryGetClickablePoint(out pt);

Remarks

An AutomationElement is not clickable if it is completely obscured by another window.

Applies to

製品 バージョン
.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