AutomationElement.TryGetClickablePoint(Point) Method

Definition

Retrieves a point within the element that can be clicked.

public:
 bool TryGetClickablePoint([Runtime::InteropServices::Out] System::Windows::Point % pt);
public bool TryGetClickablePoint (out System.Windows.Point pt);
member this.TryGetClickablePoint : Point -> bool
Public Function TryGetClickablePoint (ByRef pt As Point) As Boolean

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);
' element is an AutomationElement.
Dim pt As System.Windows.Point
Dim clickable As Boolean = element.TryGetClickablePoint(pt)

Remarks

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

Applies to

See also