Navigation
API > API/Runtime > API/Runtime/ApplicationCore > API/Runtime/ApplicationCore/FGenericAccessibleUserRegistry
Description
Registers an accessible user with the accessible registry. It is up to the caller to ensure that the passed in user has the correct user index. The passed in user will not be registered if another user with the same user index has already been registered. This function calls FGenericAccessibleUser::OnRegistered if the passed in user is successfully registered. Once an accessible user has been successfully registered, it can be retrieved and interacted with by the rest of the application.
| Name | RegisterUser |
| Type | function |
| Header File | /Engine/Source/Runtime/ApplicationCore/Public/GenericPlatform/Accessibility/GenericAccessibleInterfaces.h |
| Include Path | #include "GenericPlatform/Accessibility/GenericAccessibleInterfaces.h" |
bool RegisterUser
(
const TSharedRef < FGenericAccessibleUser > & User
)
True if the passed in user was successfully registered. Else, returns false.
Parameters
| Name | Remarks |
|---|---|
| User | An accessible user you want to register with the accessible user registry. |