Navigation
API > API/Runtime > API/Runtime/ApplicationCore > API/Runtime/ApplicationCore/IAccessibleWindow
Description
Finds the deepest accessible widget in the hierarchy at the specified coordinates. The window may return a pointer to itself in the case where there are no accessible children at the position. This could return nullptr in the case where the coordinates are outside the window bounds.
| Name | GetChildAtPosition |
| Type | function |
| Header File | /Engine/Source/Runtime/ApplicationCore/Public/GenericPlatform/Accessibility/GenericAccessibleInterfaces.h |
| Include Path | #include "GenericPlatform/Accessibility/GenericAccessibleInterfaces.h" |
TSharedPtr < IAccessibleWidget > GetChildAtPosition
(
int32 X,
int32 Y
)
The deepest widget in the UI heirarchy at X,Y
Parameters
| Name | Remarks |
|---|---|
| X | The X coordinate in absolute screen space |
| Y | The Y coordinate in absolute screen space |