# TryGetNodeAt(float, float, out AccessibilityNode)

> Tries to retrieve the AccessibilityNode at the given screen coordinates.

## Definition

* **Type:** Method
* **Namespace:** [UnityEngine.Accessibility](/engine/6000.7/script-reference/unityengine/accessibility.md)
* **Assembly:** UnityEngine.AccessibilityModule

## TryGetNodeAt(float, float, AccessibilityNode)

```csharp
public bool TryGetNodeAt(float horizontalPosition, float verticalPosition, out AccessibilityNode node)
```

### Parameters

**** (\[float]\(https\://learn.microsoft.com/dotnet/api/system.single)): The horizontal position on the screen.**** (\[float]\(https\://learn.microsoft.com/dotnet/api/system.single)): The vertical position on the screen.**** (\[AccessibilityNode]\(/engine/6000.7/script-reference/unityengine/accessibility/accessibilitynode)): The node found at the given screen coordinates, or `null` if there is no node at that position.

### Returns

| Type                                                          | Description                                        |
| ------------------------------------------------------------- | -------------------------------------------------- |
| [bool](https://learn.microsoft.com/dotnet/api/system.boolean) | `true` if the node is found and `false` otherwise. |
